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

lolsob-rspec
Claire 2021-09-30 11:47:58 +02:00
parent c1ede11c0f
commit 9fcd06c289
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 = () => {