Fix an error when logging out was causing state issues
This commit is contained in:
@@ -59,7 +59,7 @@
|
||||
<div class="text-2xl text-center lg:text-left">
|
||||
<p :style="{ color: creator.profileColors.accent }">{{ creator.occupation }}</p>
|
||||
</div>
|
||||
<div class="text-lg text-white" >{{creator.subscriberCount}} Abonnés</div>
|
||||
<div class="text-lg text-white">{{ creator.subscriberCount }} Abonnés</div>
|
||||
</div>
|
||||
|
||||
<!-- Buttons -->
|
||||
@@ -69,7 +69,7 @@
|
||||
|
||||
<subscribe-button :creator="creator"></subscribe-button>
|
||||
|
||||
<CreatePostButton :creator="creator"/>
|
||||
<publish-content-button :creator="creator"/>
|
||||
|
||||
|
||||
</div>
|
||||
@@ -79,10 +79,10 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import CreatePostButton from "@/views/contents/CreatePostButton.vue";
|
||||
import SizeIndicator from "@/views/tools/SizeIndicator.vue";
|
||||
import AboutYou from "@/views/creators/CreatorDescriptionBtn.vue";
|
||||
import SubscribeButton from "@/views/creators/SubscribeButton.vue";
|
||||
import PublishContentButton from "@/views/contents/PublishContentButton.vue";
|
||||
|
||||
const props = defineProps({
|
||||
creator: {type: Object, required: true},
|
||||
|
||||
Reference in New Issue
Block a user