From 55369301f01fa6bb0a91aebe7931146c342db926 Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Mon, 18 May 2026 03:43:16 +0300 Subject: [PATCH] =?UTF-8?q?refactor:=20=D1=83=D0=B1=D1=80=D0=B0=D0=BB=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=B8=D1=81=D0=BA=20=D1=81=D0=B2=D0=B5=D1=80=D1=85?= =?UTF-8?q?=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/layout/AppTopbar.vue | 3 --- 1 file changed, 3 deletions(-) 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(() => {
-