diff --git a/routes/accounts/[accountId].html b/routes/accounts/[accountId].html
index 937e235..4c07849 100644
--- a/routes/accounts/[accountId].html
+++ b/routes/accounts/[accountId].html
@@ -49,10 +49,10 @@
store: () => store,
computed: {
profileName: ($currentAccountProfile) => {
- return $currentAccountProfile && ('@' + $currentAccountProfile.acct)
+ return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || ''
},
shortProfileName: ($currentAccountProfile) => {
- return $currentAccountProfile && ('@' + $currentAccountProfile.username)
+ return ($currentAccountProfile && ('@' + $currentAccountProfile.username)) || ''
}
},
components: {