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.

try sameSite: "lax" to keep filters on ssr on firefox

ToBinio 41e56502 e2dbd46b

+1 -1
+1 -1
app/composables/useFilters.ts
··· 16 16 export function useFilter() { 17 17 const cookie = useCookie<unknown>("filter", { 18 18 maxAge: 60 * 60 * 24 * 30, // 1month 19 - sameSite: true, 19 + sameSite: "lax", 20 20 default: () => defaultFilter, 21 21 }); 22 22 const filter = computed<Filter>({