From 27f9628dc56f04c810e372b352109884f97401fb Mon Sep 17 00:00:00 2001 From: Sheen Capadngan Date: Wed, 31 Jul 2024 17:02:28 +0800 Subject: [PATCH] misc: updated refetch interval --- .../SecretV2MigrationSection/SecretV2MigrationSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/SecretOverviewPage/components/SecretV2MigrationSection/SecretV2MigrationSection.tsx b/frontend/src/views/SecretOverviewPage/components/SecretV2MigrationSection/SecretV2MigrationSection.tsx index aee61be19..e20d5c111 100644 --- a/frontend/src/views/SecretOverviewPage/components/SecretV2MigrationSection/SecretV2MigrationSection.tsx +++ b/frontend/src/views/SecretOverviewPage/components/SecretV2MigrationSection/SecretV2MigrationSection.tsx @@ -33,7 +33,7 @@ export const SecretV2MigrationSection = () => { currentWorkspace?.version === ProjectVersion.V3 ? "" : currentWorkspace?.id || "", { refetchInterval: - currentWorkspace?.upgradeStatus === ProjectUpgradeStatus.InProgress ? 3000 : false + currentWorkspace?.upgradeStatus === ProjectUpgradeStatus.InProgress ? 2000 : false } ); const { membership } = useProjectPermission();