Skip to content

Commit

Permalink
fix cursor moving to new line when tapped return
Browse files Browse the repository at this point in the history
  • Loading branch information
OlimpiaZurek committed Oct 2, 2023
1 parent 3e36d12 commit 8657dd4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import useLocalize from '../../../../hooks/useLocalize';
function PopoverReportActionContextMenu(_props, ref) {
const {translate} = useLocalize();
const reportIDRef = useRef('0');
const typeRef = useRef('');
const typeRef = useRef(undefined);
const reportActionRef = useRef({});
const reportActionIDRef = useRef('0');
const originalReportIDRef = useRef('0');
Expand Down

0 comments on commit 8657dd4

Please sign in to comment.