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 7f9481a commit 96f156dCopy full SHA for 96f156d
packages/kit/src/runtime/client/renderer.js
@@ -264,9 +264,7 @@ export class Renderer {
264
}
265
266
267
- if (navigation_result.reload) {
268
- location.reload();
269
- } else if (this.started) {
+ if (this.started) {
270
this.current = navigation_result.state;
271
272
this.root.$set(navigation_result.props);
packages/kit/src/runtime/client/types.d.ts
@@ -15,7 +15,6 @@ export type NavigationCandidate = {
15
};
16
17
export type NavigationResult = {
18
- reload?: boolean;
19
redirect?: string;
20
state: NavigationState;
21
props: Record<string, any>;
0 commit comments