diff --git a/src/photo/form/PhotoForm.tsx b/src/photo/form/PhotoForm.tsx
index 5ca7e128..6a98bf41 100644
--- a/src/photo/form/PhotoForm.tsx
+++ b/src/photo/form/PhotoForm.tsx
@@ -158,11 +158,19 @@ export default function PhotoForm({
onClick={onClick}
disabled={!imageData || isLoading}
className={clsx(
+ 'flex gap-2 items-center justify-center',
'disabled:opacity-50 text-sm px-2.5 min-h-0 py-1.5',
Boolean(error) && 'error text-error',
)}
>
- {label} ✨
+
+ {label}
+
+
+ {isLoading
+ ?
+ : <>✨>}
+
;
return (