update swr config to not fetch everything on focus (#3350)

Co-authored-by: Rahul R <rahulr@Rahuls-MacBook-Pro.local>
This commit is contained in:
rahulramesha
2024-01-11 18:21:41 +05:30
committed by sriram veeraghanta
parent df97b35a99
commit 96868760a3
2 changed files with 9 additions and 14 deletions

View File

@@ -1,5 +1,8 @@
export const SWR_CONFIG = {
refreshWhenHidden: false,
revalidateIfStale: false,
revalidateOnFocus: false,
revalidateOnMount: true,
refreshInterval: 600000,
errorRetryCount: 3,
};