diff --git a/src/stores/creatorProfileStore.js b/src/stores/creatorProfileStore.js index 2f2d5e3..9946702 100644 --- a/src/stores/creatorProfileStore.js +++ b/src/stores/creatorProfileStore.js @@ -49,21 +49,9 @@ export const useCreatorProfileStore = defineStore('creator-profile', () => { } } - async function fetchSpecificCreatorProfile(creatorAlias) { - try { - const creatorResponse = await client.get( - `/api/creators/@${creatorAlias}` - ); - value.value = creatorResponse.data; - } catch (error) { - value.value = undefined; - } - } - return { creator: value, hasCreator, fetchCurrentCreatorProfile, - fetchSpecificCreatorProfile, }; }); diff --git a/src/views/creators/BannerActions.vue b/src/views/creators/BannerActions.vue index c3776b2..8ddcd98 100644 --- a/src/views/creators/BannerActions.vue +++ b/src/views/creators/BannerActions.vue @@ -1,13 +1,12 @@  - -