fix: early return cleanup

This commit is contained in:
Hussain Nagaria
2025-05-23 14:26:22 +05:30
parent 4f0ac98eea
commit 4fe14eb2e9

View File

@@ -39,9 +39,9 @@ const Layout = computed(() => {
}
if (screenSize.width < 640) {
return MobileLayout
} else {
return DesktopLayout
}
return DesktopLayout
})
onMounted(async () => {