We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b766be8 commit 2121520Copy full SHA for 2121520
packages/kit/src/runtime/client/client.js
@@ -634,8 +634,8 @@ export function create_client(app, target) {
634
const new_values = new_url.searchParams.getAll(key);
635
636
if (
637
- old_values.some((value) => !new_values.includes(value)) ||
638
- new_values.some((value) => !old_values.includes(value))
+ old_values.every((value) => new_values.includes(value)) &&
+ new_values.every((value) => old_values.includes(value))
639
) {
640
changed.delete(key);
641
}
0 commit comments