Bill Bot 1

This commit is contained in:
Sidharth Prabhu
2026-06-17 21:02:49 +05:30
parent df9f451fc8
commit a96e36e409
30 changed files with 1665 additions and 516 deletions

View File

@@ -7,7 +7,7 @@ interface FoodContextType {
stalls: Stall[];
isLoading: boolean;
error: string | null;
refreshData: () => Promise<void>;
refreshData: (silent?: boolean) => Promise<void>;
}
const FoodContext = createContext<FoodContextType | undefined>(undefined);