this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix stupid mistake: title not showing acct

+1 -1
+1 -1
src/pages/account-statuses.jsx
··· 232 232 const { i18n } = useLingui(); 233 233 let title = t`Account posts`; 234 234 if (account?.acct) { 235 - const acctDisplay = /@/.test(account.acct) ? '' : '@' + account.acct; 235 + const acctDisplay = (/@/.test(account.acct) ? '' : '@') + account.acct; 236 236 const accountDisplay = account?.displayName 237 237 ? `${account.displayName} (${acctDisplay})` 238 238 : `${acctDisplay}`;