Skip to content

Commit

Permalink
#2141 - Fix minor linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Rxthew authored and julianguyen committed Dec 8, 2022
1 parent 0bc10e3 commit 0d6e0df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/app/components/Input/InputTextarea.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const handleResult = (type: string) => {
}
case 'image': {
const src = window.prompt('Please provide a link to your image.');
if(src) exec('insertImage',src);
break
if (src) exec('insertImage', src);
break;
}
case 'olist':
exec('insertOrderedList');
Expand Down

0 comments on commit 0d6e0df

Please sign in to comment.