diff --git a/components/nav/NavSide.vue b/components/nav/NavSide.vue index 045a6db0..70735f66 100644 --- a/components/nav/NavSide.vue +++ b/components/nav/NavSide.vue @@ -3,16 +3,6 @@ const { command } = defineProps<{ command?: boolean }>() -const search = ref() -const route = useRoute() - -const isExploreRoute = () => route.path.includes('explore') - -watchEffect(() => { - if (isExploreRoute() && search.value) - search.value.focus() -}) - const { notifications } = useNotifications() @@ -36,10 +26,7 @@ const { notifications } = useNotifications()