Skip to content

Commit

Permalink
Invalid sort default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien LeBlanc committed Oct 10, 2023
1 parent 18efbef commit b4a3cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const useIndexStore = defineStore('store', () => {
const selectedDay = useLocalStorage('selectedDay', ref(new Date().toLocaleDateString('en-CA')));
const filter = useLocalStorage('filter', ref('daily'));
const selectedTabIndex = useLocalStorage('selectedTabIndex', ref(0));
const sort = useLocalStorage('entries', ref('entries'));
const sort = useLocalStorage('entries', ref('name'));
const weekObjective = useLocalStorage('weekObjective', ref('40:00'));
const menuOpened = ref(false);

Expand Down

0 comments on commit b4a3cb5

Please sign in to comment.