Skip to content

Commit

Permalink
chore: rename some vars
Browse files Browse the repository at this point in the history
  • Loading branch information
altrusl committed Feb 7, 2024
1 parent 5d4905c commit 1ee1282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/composables/useLocalStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ watch(data, () => {
for (const key in data) {
decomposedData[key] = (data[key] instanceof Set) ? Array.from(data[key]) : data[key];
}
localStorage.setItem("ap-data", JSON.stringify(decomposedData));
localStorage.setItem("arty-crafty-data", JSON.stringify(decomposedData));
});

export function useLocalStorage() {
Expand Down

0 comments on commit 1ee1282

Please sign in to comment.