fix: use ContentRich for account links (#48)

This commit is contained in:
wheat 2022-11-24 10:08:24 -05:00 committed by GitHub
parent 55aed591de
commit ce0b247123
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,6 +8,6 @@ defineProps<{
<template>
<NuxtLink :to="getAccountPath(account)">
{{ getDisplayName(account) }}
<ContentRich font-bold :content="getDisplayName(account)" :emojis="account.emojis" />
</NuxtLink>
</template>