diff --git a/apps/ui/src/stores/followedSpaces.ts b/apps/ui/src/stores/followedSpaces.ts index b3096d674..a135aae5a 100644 --- a/apps/ui/src/stores/followedSpaces.ts +++ b/apps/ui/src/stores/followedSpaces.ts @@ -82,7 +82,7 @@ export const useFollowedSpacesStore = defineStore('followedSpaces', () => { ) ) ); - fetchSpacesData(newIds); + await fetchSpacesData(newIds); } async function toggleSpaceFollow(id: string) { @@ -124,6 +124,8 @@ export const useFollowedSpacesStore = defineStore('followedSpaces', () => { async ([web3, authLoading, authInitiated]) => { if (!authInitiated || authLoading) return; + followedSpacesLoaded.value = false; + if (!web3) { followedSpacesIds.value = []; followedSpacesLoaded.value = true;