created a route for public collections
This commit is contained in:
@@ -29,8 +29,6 @@ const useAccountStore = create<AccountStore>()((set) => ({
|
||||
|
||||
const profilePic = await determineProfilePicSource(data);
|
||||
|
||||
console.log({ ...data.response, profilePic });
|
||||
|
||||
if (response.ok) set({ account: { ...data.response, profilePic } });
|
||||
},
|
||||
updateAccount: async (user) => {
|
||||
|
||||
@@ -25,8 +25,6 @@ const useCollectionStore = create<CollectionStore>()((set) => ({
|
||||
|
||||
const data = await response.json();
|
||||
|
||||
console.log(data);
|
||||
|
||||
if (response.ok) set({ collections: data.response });
|
||||
},
|
||||
addCollection: async (body) => {
|
||||
|
||||
Reference in New Issue
Block a user