bug fixed

This commit is contained in:
Samandar Turgunboyev
2026-02-03 18:57:14 +05:00
parent b7846c7bc9
commit 8a4682212f
10 changed files with 66 additions and 46 deletions

View File

@@ -11,5 +11,5 @@ export interface Category {
export interface CategoryResult {
id: string;
name: string;
image: string;
image: string | null;
}

View File

@@ -42,9 +42,9 @@ export interface ProductListResult {
export interface ProductDetail {
id: number;
images: { id: number; image: string }[];
images: { id: number; image: string | null }[];
liked: boolean;
meansurement: null | string;
meansurement: null | { id: number; name: string };
inventory_id: null | string;
product_id: string;
code: string;