diff --git a/packages/web/pages/settings/account.tsx b/packages/web/pages/settings/account.tsx
index a6b6f5f7d..79f8270ef 100644
--- a/packages/web/pages/settings/account.tsx
+++ b/packages/web/pages/settings/account.tsx
@@ -20,6 +20,8 @@ import { showErrorToast, showSuccessToast } from '../../lib/toastHelpers'
import { ConfirmationModal } from '../../components/patterns/ConfirmationModal'
import { ProgressBar } from '../../components/elements/ProgressBar'
+const ACCOUNT_LIMIT = 50_000
+
const StyledLabel = styled('label', {
fontWeight: 600,
fontSize: '16px',
@@ -386,20 +388,22 @@ export default function Account(): JSX.Element {
{!isValidating && (
<>
- {`${libraryCount} of 50K library items used.`}
+ {`${libraryCount} of ${ACCOUNT_LIMIT} library items used.`}
-
- {`NOTE: this is a soft limit, if you are approaching or have exceeded this limit please contact support to have your limit raised.`}
+
+ NOTE: this is a soft limit, if you are approaching or have
+ exceeded this limit please contact support to have your limit
+ raised.
>
)}
-
+ {/* */}