From 4fe14eb2e941203b026ff9066a6789e315a1b2ff Mon Sep 17 00:00:00 2001 From: Hussain Nagaria Date: Fri, 23 May 2025 14:26:22 +0530 Subject: [PATCH] fix: early return cleanup --- frontend/src/App.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 6097fe09..5e4e4fb9 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -39,9 +39,9 @@ const Layout = computed(() => { } if (screenSize.width < 640) { return MobileLayout - } else { - return DesktopLayout } + + return DesktopLayout }) onMounted(async () => {