Skip to content

Commit

Permalink
[chore] remove unused reload flag on NavigationResult (#2964)
Browse files Browse the repository at this point in the history
  • Loading branch information
moatra authored Dec 3, 2021
1 parent 7f9481a commit 96f156d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions packages/kit/src/runtime/client/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,9 +264,7 @@ export class Renderer {
}
}

if (navigation_result.reload) {
location.reload();
} else if (this.started) {
if (this.started) {
this.current = navigation_result.state;

this.root.$set(navigation_result.props);
Expand Down
1 change: 0 additions & 1 deletion packages/kit/src/runtime/client/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export type NavigationCandidate = {
};

export type NavigationResult = {
reload?: boolean;
redirect?: string;
state: NavigationState;
props: Record<string, any>;
Expand Down

0 comments on commit 96f156d

Please sign in to comment.