Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Szymon20000 committed Aug 18, 2023
1 parent d32859c commit 0fd1d9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/home/report/ReportActionCompose.js
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ function ReportActionCompose({
(selectionEnd) => {
if (shouldBlockEmojiCalc.current || !this.state.value) {
shouldBlockEmojiCalc.current = false;
resetSuggestions()
resetSuggestions();
return;
}
const leftString = value.substring(0, selectionEnd);
Expand Down Expand Up @@ -585,7 +585,7 @@ function ReportActionCompose({
(selectionEnd) => {
if (shouldBlockMentionCalc.current || this.state.selection.end < 1) {
shouldBlockMentionCalc.current = false;
resetSuggestions()
resetSuggestions();
return;
}

Expand Down

0 comments on commit 0fd1d9d

Please sign in to comment.