Clean up whitespace in account page

Remove extra blank lines for cleaner formatting.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Knee Cola
2025-11-25 20:49:47 +01:00
parent 62d0cb81a7
commit 572466497b

View File

@@ -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 = () => {
<Link href="/account/logout" className='btn btn-error'><LogoutIcon /> {t('logout-button')}</Link>
</div>
</div>
</div>
</Main>
);
};