Skip to content

Commit

Permalink
fix: Temporary TZ Issue Fix For Shopping Lists (#3850)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-genson committed Jul 5, 2024
1 parent 6a7f0ed commit e344f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/composables/use-shopping-list-item-actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useUserApi } from "~/composables/api";
import { ShoppingListItemOut } from "~/lib/api/types/group";

const localStorageKey = "shopping-list-queue";
const queueTimeout = 5 * 60 * 1000; // 5 minutes
const queueTimeout = 48 * 60 * 60 * 1000; // 48 hours

type ItemQueueType = "create" | "update" | "delete";

Expand Down

0 comments on commit e344f3f

Please sign in to comment.