Fix issue when accessing profile without a creator associated

This commit is contained in:
2025-02-11 20:06:09 -05:00
parent 3ca2dc58eb
commit c7f0921a65

View File

@@ -75,13 +75,11 @@
</div> </div>
<!-- Lorsque l'utilisateur n'a pas de creator name--> <template v-if="creatorProfileStore.creator !== undefined">
<div class="card"> <div class="card">
<div class="title"> <div class="title">
{{ $t('creatorinfopage.informations') }} {{ $t('creatorinfopage.informations') }}
</div> </div>
<div class="content"> <div class="content">
<!-- NAME --> <!-- NAME -->
@@ -106,15 +104,12 @@
</button> </button>
</div> </div>
</div> </div>
<div class="card"> <div class="card">
<div class="title"> <div class="title">
{{ $t('creatorinfopage.socialnetwork') }} {{ $t('creatorinfopage.socialnetwork') }}
</div> </div>
<div class="content"> <div class="content">
<button class="action" @click="openDialog('SocialsDialog')"> <button class="action" @click="openDialog('SocialsDialog')">
@@ -167,6 +162,7 @@
</div> </div>
</div> </div>
</template>
</div> </div>