UseQuery crash my app when I left it running on the background for too long. I suspect it has something to do with the credential expired. Any suggests will be appreciated
const chats = useQuery(
Chat,
chats => chats.filtered('groupId = $0', groupId),
[groupId],
).sorted('createdAt');