Fix clicking on account name in “[xxx] boosted” text leading to broken path

master
Claire 2021-09-30 11:47:58 +02:00
parent e660a7bbb0
commit b31748a496
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export default class StatusPrepend extends React.PureComponent {
handleClick = (e) => {
const { account, parseClick } = this.props;
parseClick(e, `/${account.get('acct')}`);
parseClick(e, `/@${account.get('acct')}`);
}
Message = () => {