change refetch time for userPaymentsData

This commit is contained in:
smanylov
2026-03-30 14:51:48 +07:00
parent 4abcc9689c
commit 884fb8dc50
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "no-copy-frontend", "name": "no-copy-frontend",
"version": "0.73.0", "version": "0.74.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev -p 2999", "dev": "next dev -p 2999",
@@ -32,7 +32,7 @@ export const useUserPaymentsData = () => {
return data; return data;
}, },
refetchInterval: 30000, refetchInterval: 10000,
retry: false retry: false
}); });
}; };