From e6ea5d13d410ba26d00ead2e576740dd67993c50 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Wed, 27 Nov 2024 09:36:52 +0100 Subject: [PATCH] fix: progress data not updating due to enabled being set https://stackoverflow.com/a/72230424 --- components/home/ScrollingCollectionList.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/components/home/ScrollingCollectionList.tsx b/components/home/ScrollingCollectionList.tsx index 03cb37e9..f86b1745 100644 --- a/components/home/ScrollingCollectionList.tsx +++ b/components/home/ScrollingCollectionList.tsx @@ -31,7 +31,6 @@ export const ScrollingCollectionList: React.FC = ({ const { data, isLoading } = useQuery({ queryKey, queryFn, - enabled: !disabled, staleTime: 0, });