diff --git a/web-admin/src/lib/refetch-interval-store.ts b/web-admin/src/lib/refetch-interval-store.ts index 701e889b6ee..14d624f636f 100644 --- a/web-admin/src/lib/refetch-interval-store.ts +++ b/web-admin/src/lib/refetch-interval-store.ts @@ -84,12 +84,6 @@ export function createSmartRefetchInterval( const resources = query.state.data.resources; - // If there are no resources at all, use a fixed refetch interval - // This handles the case during initial deployment creation when parser hasn't run yet - if (resources.length === 0) { - return INITIAL_REFETCH_INTERVAL; - } - // Get or initialize state from WeakMap const currentState = queryRefetchStateMap.get(query) || {}; const updatedState = updateSmartRefetchMeta(resources, currentState);