bug fixes + small visual improvements

This commit is contained in:
Daniel
2023-05-01 23:30:23 +03:30
parent 0d0e53218f
commit a2023e19ef
18 changed files with 117 additions and 53 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ const useCollectionStore = create<CollectionStore>()((set) => ({
if (response.ok)
set((state) => ({
collections: state.collections.map((e) =>
e.id === collection.id ? collection : e
e.id === data.response.id ? data.response : e
),
}));