This commit is contained in:
g
2025-02-08 00:31:53 +00:00
parent e75af20cff
commit 30fb2aaaab
3 changed files with 32 additions and 36 deletions

View File

@@ -4,9 +4,9 @@ export interface Product {
description: string;
unitType: string;
category: string;
tieredPricing: Array<{
pricing: Array<{
minQuantity: number;
pricePerUnit: number;
}>;
image?: string | File | null;
image?: string | File | null | undefined;
}