diff --git a/frontend/src/components/layout/AppTopbar.vue b/frontend/src/components/layout/AppTopbar.vue index db3c3eb..56f32ca 100644 --- a/frontend/src/components/layout/AppTopbar.vue +++ b/frontend/src/components/layout/AppTopbar.vue @@ -4,7 +4,6 @@ import { useRouter } from 'vue-router' import { useAuthStore } from '@/stores/auth' import { useUserStore } from '@/stores/user' import CoinChip from '@/components/ui/CoinChip.vue' -import SearchInput from '@/components/ui/SearchInput.vue' import AppIcon from '@/components/ui/AppIcon.vue' import { formatUserName } from '@/utils/formatUserName' import type { UserRole } from '@/types' @@ -12,7 +11,6 @@ import type { UserRole } from '@/types' const auth = useAuthStore() const userStore = useUserStore() const router = useRouter() -const searchQuery = ref('') const isProfileMenuOpen = ref(false) const profileMenuRef = ref(null) @@ -89,7 +87,6 @@ onBeforeUnmount(() => {
-