fixing and styleing

This commit is contained in:
sdarbinyan
2026-02-20 01:25:29 +04:00
parent cb1349a5fd
commit 070e254a5c
17 changed files with 176 additions and 61 deletions

View File

@@ -14,7 +14,10 @@ export interface Subcategory {
visible: boolean;
priority: number;
img?: string;
/** Root-level category this subcategory belongs to */
categoryId: string;
/** Direct parent ID — could be a category ID or a parent subcategory ID */
parentId?: string;
itemCount?: number;
subcategories?: Subcategory[];
hasItems?: boolean;