diff --git a/app/soapbox/queries/chats.ts b/app/soapbox/queries/chats.ts index d9a2b70bf..1a496582b 100644 --- a/app/soapbox/queries/chats.ts +++ b/app/soapbox/queries/chats.ts @@ -195,6 +195,7 @@ const useChat = (chatId?: string) => { }; return useQuery(ChatKeys.chat(chatId), getChat, { + cacheTime: 0, enabled: !!chatId, }); };