dividers bugfix

This commit is contained in:
Nikita Krupin 2022-05-27 20:17:30 -04:00
parent 1b4e05746d
commit be68be7842
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export const mutations = {
// NOTE: localStorage is not reactive, so it will only be used on first load
// currently called on mounted() in pages/index.vue
if (process.client) {
state.roundTweak = localStorage.getItem("roundTweak") || 0;
state.roundTweak = JSON.parse(localStorage.getItem("roundTweak")) || 0;
state.roundThumb =
JSON.parse(localStorage.getItem("roundThumb")) === true;
state.roundWatch =