From 572466497b5124580ca3a8dccebf3c584c54d22a Mon Sep 17 00:00:00 2001 From: Knee Cola Date: Tue, 25 Nov 2025 20:49:47 +0100 Subject: [PATCH] Clean up whitespace in account page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove extra blank lines for cleaner formatting. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/[locale]/account/page.tsx | 3 --- 1 file changed, 3 deletions(-) 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')} - - ); };