From 1316a4d55432ae7283680af8bb02dd270e875e6f Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Tue, 13 Aug 2024 11:00:39 +0800 Subject: [PATCH] Increase delay time on checking processing items --- packages/web/lib/networking/library_items/useLibraryItems.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/lib/networking/library_items/useLibraryItems.tsx b/packages/web/lib/networking/library_items/useLibraryItems.tsx index 7f79f22f3..e3512711c 100644 --- a/packages/web/lib/networking/library_items/useLibraryItems.tsx +++ b/packages/web/lib/networking/library_items/useLibraryItems.tsx @@ -567,7 +567,7 @@ export function useRefreshProcessingItems() { } } if (shouldRefetch && variables.attempt < maxAttempts) { - await delay(3500 * variables.attempt + 1) + await delay(5000 * variables.attempt + 1) mutation.mutate({ attempt: variables.attempt + 1, itemIds: data.edges