fix: account profile page title (#3159)

This commit is contained in:
Clovis 2025-01-29 04:02:20 +01:00 committed by GitHub
parent 8e2a1d58c1
commit e52b34c62d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,7 +28,7 @@ const postPaginator = useMastoClient().v1.accounts.$select(account.id).statuses.
if (account) { if (account) {
useHydratedHead({ useHydratedHead({
title: () => `${t('account.posts')} | ${getDisplayName(account)} (@${account.acct})`, title: () => `${t('nav.profile')} | ${getDisplayName(account)} (@${account.acct})`,
}) })
} }
</script> </script>