diff --git a/src/components/settings/AccountProfileTab.tsx b/src/components/settings/AccountProfileTab.tsx
index c4daba14..cc2b221e 100644
--- a/src/components/settings/AccountProfileTab.tsx
+++ b/src/components/settings/AccountProfileTab.tsx
@@ -154,6 +154,7 @@ export function AccountProfileTab() {
- JPEG, PNG, WebP up to 10MB
+ JPEG, PNG, WebP up to {maxSizeMB}MB
{isAvatar ? (
- <>Drag & drop or click to browse
JPEG, PNG, WebP up to 10MB>
+ <>Drag & drop or click to browse
JPEG, PNG, WebP up to {maxSizeMB}MB>
) : canUploadMore ? (
- <>Drag & drop or click to browse
JPEG, PNG, WebP up to 10MB each>
+ <>Drag & drop or click to browse
JPEG, PNG, WebP up to {maxSizeMB}MB each>
) : (
`Maximum ${actualMaxFiles} ${actualMaxFiles === 1 ? 'photo' : 'photos'} allowed`
)}
diff --git a/src/pages/Profile.tsx b/src/pages/Profile.tsx
index 49ba27af..f6561864 100644
--- a/src/pages/Profile.tsx
+++ b/src/pages/Profile.tsx
@@ -349,7 +349,7 @@ export default function Profile() {