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 0067894 commit ea48a3bCopy full SHA for ea48a3b
packages/sanity-sveltekit/src/lib/visual-editing/VisualEditingComponent.svelte
@@ -27,6 +27,9 @@
27
update: (update) => {
28
if (update.type === 'push' || update.type === 'replace') {
29
navigatingFromUpdate = true;
30
+ // Seems to be a problematic eslint rule as of 30/09/25:
31
+ // https://github.com/sveltejs/eslint-plugin-svelte/issues?q=is%3Aissue%20no-navigation-without-resolve
32
+ // eslint-disable-next-line svelte/no-navigation-without-resolve
33
goto(update.url, { replaceState: update.type === 'replace' });
34
} else if (update.type === 'pop') {
35
history.back();
0 commit comments