fix: missed logged in users squares

This commit is contained in:
patak 2023-01-05 13:17:44 +01:00
parent e5a9bd7370
commit 597ebae042
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ const switchUser = (user: UserLogin) => {
hover="filter-none op100"
@click="switchUser(user)"
>
<AccountAvatar w-13 h-13 :account="user.account" />
<AccountAvatar w-13 h-13 :account="user.account" square />
</button>
</template>
</div>

View file

@ -33,7 +33,7 @@ const switchUser = (user: UserLogin) => {
aria-label="Switch user"
@click="switchUser(user)"
>
<AccountInfo :account="user.account" :hover-card="false" />
<AccountInfo :account="user.account" :hover-card="false" square />
<div flex-auto />
<div v-if="user.token === currentUser?.token" i-ri:check-line text-primary mya text-2xl />
</button>