A simple to-do app focused on tasks that can be completed within a specific time span.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fixed floating error onreload

+10 -4
+10 -4
app/composables/useSettings.ts
··· 4 4 }; 5 5 6 6 export function useSettings() { 7 - const settings = useLocalStorage<Settings>("settings", { 8 - insertionPoint: "bottom", 9 - design: "classic", 10 - }); 7 + const settings = useLocalStorage<Settings>( 8 + "settings", 9 + { 10 + insertionPoint: "bottom", 11 + design: "classic", 12 + }, 13 + { 14 + initOnMounted: true, 15 + }, 16 + ); 11 17 return { settings }; 12 18 }