Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1834,6 +1834,11 @@ export function useSearchParams<Schema extends StandardSchemaV1>(

// Track if we've done initial setup (separate from cache initialization)
let hasInitialized = false;

// Initial URL sync to local cache - on both server and client
if (!building) {
searchParams.syncFromURL(page.url.searchParams);
}

// Only run initialization logic after hydration is complete
$effect(() => {
Expand Down