Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Feb 11, 2024
1 parent ca02dc3 commit 1a5d909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ModeButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
const toggleMode = () => {
const newValue = !props.modelValue
emit('update:modelValue', newValue);
localStorage.setItem('developermode', state.toString());
localStorage.setItem('developermode', newValue.toString());
}
</script>

Expand Down

0 comments on commit 1a5d909

Please sign in to comment.