From abc19f4a267511e6d8af0bc1c9e62777abdb8024 Mon Sep 17 00:00:00 2001 From: phact Date: Wed, 24 Sep 2025 22:06:01 -0400 Subject: [PATCH] explicit type --- frontend/src/components/layout-wrapper.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/layout-wrapper.tsx b/frontend/src/components/layout-wrapper.tsx index 79d4b095..5c2f0e13 100644 --- a/frontend/src/components/layout-wrapper.tsx +++ b/frontend/src/components/layout-wrapper.tsx @@ -2,7 +2,7 @@ import { Bell, Loader2 } from "lucide-react"; import { usePathname } from "next/navigation"; -import { useGetConversationsQuery } from "@/app/api/queries/useGetConversationsQuery"; +import { useGetConversationsQuery, type ChatConversation } from "@/app/api/queries/useGetConversationsQuery"; import { useGetSettingsQuery } from "@/app/api/queries/useGetSettingsQuery"; import { KnowledgeFilterPanel } from "@/components/knowledge-filter-panel"; import Logo from "@/components/logo/logo"; @@ -37,7 +37,7 @@ export function LayoutWrapper({ children }: { children: React.ReactNode }) { const { data: conversations = [], isLoading: isConversationsLoading } = useGetConversationsQuery(endpoint, refreshTrigger, { enabled: isOnChatPage && (isAuthenticated || isNoAuthMode), - }); + }) as { data: ChatConversation[]; isLoading: boolean }; const handleNewConversation = () => { refreshConversations();