diff --git a/pages/@[account].vue b/pages/@[account].vue index ead51051..57d5545a 100644 --- a/pages/@[account].vue +++ b/pages/@[account].vue @@ -6,7 +6,7 @@ const account = await fetchAccountByName(accountName).catch(() => null) if (account) { useHead({ - title: `${account.displayName} (@${account.acct})`, + title: () => `${account.displayName?.replace(/\:\w+\:/g, '') ?? ''} (@${account.acct})`, }) }