Skip to content

Commit

Permalink
Fix bug on android
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhenjaHorbach committed Oct 11, 2023
1 parent 919859e commit a650f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MenuItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const MenuItem = React.forwardRef((props, ref) => {
return;
}
const parser = new ExpensiMark();
setHtml(parser.replace(convertToLTR(props.title)));
setHtml(parser.replace(props.title));
titleRef.current = props.title;
}, [props.title, props.shouldParseTitle]);

Expand Down

0 comments on commit a650f1d

Please sign in to comment.