side bar left bug fix

This commit is contained in:
2025-08-26 16:49:16 +05:30
parent 243fd6452c
commit 441f1efb23
2 changed files with 8 additions and 4 deletions

View File

@@ -664,6 +664,6 @@ interface DecalStore {
// Create the Zustand store with types
export const useDecalStore = create<DecalStore>((set) => ({
selectedSubCategory: null,
selectedSubCategory: 'Safety',
setSelectedSubCategory: (subCategory: string | null) => set({ selectedSubCategory: subCategory }),
}));