diff --git a/app/[locale]/account/page.tsx b/app/[locale]/account/page.tsx
index a541a77..7d1c37c 100644
--- a/app/[locale]/account/page.tsx
+++ b/app/[locale]/account/page.tsx
@@ -6,7 +6,6 @@ import LogoutIcon from "@mui/icons-material/Logout";
import AccountCircle from "@mui/icons-material/AccountCircle";
import { useTranslations } from 'next-intl';
-
const Page: FC = () => {
const t = useTranslations('account-page');
@@ -20,10 +19,8 @@ const Page: FC = () => {
{t('logout-button')}
-
-
);
};