From 542b6e45c37bd6e8c64472605e8fe4baf22098ed Mon Sep 17 00:00:00 2001 From: Avraham Sakal Date: Sun, 21 Sep 2025 20:21:30 -0400 Subject: [PATCH] fix: type error --- pages/chat/@id/+Page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/chat/@id/+Page.tsx b/pages/chat/@id/+Page.tsx index d5d2177..fc57a0f 100644 --- a/pages/chat/@id/+Page.tsx +++ b/pages/chat/@id/+Page.tsx @@ -323,7 +323,7 @@ export default function ChatPage() { title, } as Conversation, ]; - queryClient.setQueryData( + queryClient.setQueryData>( trpc.chat.conversations.fetchAll.queryKey(), newConversations );