You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// mark initial mount complete and trigger a re-render so consumers see the change
202
+
setIsInitialMount(false);
201
203
}
204
+
// Intentionally disable exhaustive-deps: this effect is meant to run only once on initial mount.
205
+
// The dependencies intentionally included are: syncFiltersAndUrlParams, searchParams, tableConfigKey, tableConfigsState, updateUrl, defaultTableConfig, urlFilters, initialColumnFilters.
206
+
// These values are stable/memoized by design. Adding all inferred deps would cause unwanted re-runs; update dependencies intentionally if behavior changes.
0 commit comments