diff --git a/apps/mobile/src/app/menu/index.tsx b/apps/mobile/src/app/menu/index.tsx index e1a18b7..594b3cc 100644 --- a/apps/mobile/src/app/menu/index.tsx +++ b/apps/mobile/src/app/menu/index.tsx @@ -16,7 +16,7 @@ import * as Haptics from "expo-haptics"; import { api } from "@/lib/api"; import { getActiveRestaurant, type ActiveRestaurant } from "@/lib/active-restaurant"; import { getPublicMenuUrl, getPublicMenuDisplayUrl } from "@/lib/urls"; -import { getCustomerInfo, isProActive } from "@/lib/purchases"; +import { configurePurchases, getCustomerInfo, isProActive } from "@/lib/purchases"; import { CategoryPillBar } from "@/components/menu/CategoryPillBar"; import { MenuItemCard, type MenuItemData } from "@/components/menu/MenuItemCard"; import { ItemDetailSheet } from "@/components/menu/ItemDetailSheet"; @@ -67,6 +67,7 @@ export default function MenuEditorScreen() { return; } setActive(cached); + configurePurchases(cached.restaurantId); const data = await api.get(`/menus/${cached.menuId}`); setMenu(data.menu);