chore(options): changed default autofill values from false to true

This commit is contained in:
2026-01-30 20:44:29 +01:00
parent bfd14a8471
commit 19ed3d6a1c
2 changed files with 4 additions and 4 deletions
@@ -144,7 +144,7 @@ export default defineComponent({
},
created() {
this.fillCheckpointName = window.localStorage.getItem('fill-checkpoint') == 'true';
this.fillCheckpointName = window.localStorage.getItem('fill-checkpoint') !== 'false';
this.fetchSceneriesData();
},