diff --git a/packages/query-core/src/queryObserver.ts b/packages/query-core/src/queryObserver.ts index 463407a073..1546698439 100644 --- a/packages/query-core/src/queryObserver.ts +++ b/packages/query-core/src/queryObserver.ts @@ -358,7 +358,7 @@ export class QueryObserver< this.#currentQuery, ) - if (isServer || this.#currentResult.isStale || !isValidTimeout(staleTime)) { + if (this.#currentResult.isStale || !isValidTimeout(staleTime)) { return } @@ -389,7 +389,6 @@ export class QueryObserver< this.#currentRefetchInterval = nextInterval if ( - isServer || resolveEnabled(this.options.enabled, this.#currentQuery) === false || !isValidTimeout(this.#currentRefetchInterval) || this.#currentRefetchInterval === 0