cleaned up

This commit is contained in:
sdarbinyan
2026-06-21 23:42:39 +04:00
parent 3b802b7c7b
commit 4fb918f5e4
25 changed files with 415 additions and 550 deletions

View File

@@ -121,11 +121,11 @@ export class SubcategoriesComponent implements OnInit, OnDestroy {
}
// TrackBy function for performance optimization
trackByCategoryId(index: number, category: Category): number {
trackByCategoryId(_index: number, category: Category): number {
return category.categoryID;
}
trackBySubId(index: number, sub: Subcategory): string {
trackBySubId(_index: number, sub: Subcategory): string {
return sub.id;
}