From 2d39f93e42350699711642e74b97fca7624d6f21 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Mon, 14 Apr 2025 22:16:37 -0500 Subject: [PATCH] refactor(inventory card): change to 15min check --- frontend/src/utils/querys/logistics/getInventoryCheck.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/utils/querys/logistics/getInventoryCheck.tsx b/frontend/src/utils/querys/logistics/getInventoryCheck.tsx index 1051619..a764bc2 100644 --- a/frontend/src/utils/querys/logistics/getInventoryCheck.tsx +++ b/frontend/src/utils/querys/logistics/getInventoryCheck.tsx @@ -7,7 +7,7 @@ export function getinventoryCheck(data: any) { queryFn: () => fetchStockSilo(data), //enabled: staleTime: 1000, - refetchInterval: 60 * 1000, + refetchInterval: 1000 * 60 * 15, refetchOnWindowFocus: true, }); }