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 7055370 commit 0734cc1Copy full SHA for 0734cc1
src/backend/models/routes.ts
@@ -108,7 +108,8 @@ export class Routes {
108
this.current += delta;
109
// If the difference is not 0, navigate to the target route using window.history.go() method
110
if (delta !== 0) {
111
- window.history.go(this.current);
+ console.log('OS: ', navigator.platform);
112
+ window.history.go(delta);
113
// Return true to indicate that the navigation was successful
114
return true;
115
}
0 commit comments