Skip to content

Commit

Permalink
fix(urlParams): empty save param issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jadh4v committed Feb 8, 2024
1 parent 69ddc06 commit 7afb866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default defineComponent({
// --- save state --- //
const remoteSaveStateStore = useRemoteSaveStateStore();
if (import.meta.env.VITE_ENABLE_REMOTE_SAVE) {
if (import.meta.env.VITE_ENABLE_REMOTE_SAVE && urlParams.save) {
remoteSaveStateStore.setSaveUrl(urlParams.save.toString());
}
Expand Down

0 comments on commit 7afb866

Please sign in to comment.