Skip to content

Commit

Permalink
[ReviewEntries] Eliminate unhandled edit error (#3595)
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec authored Feb 3, 2025
1 parent 2fad544 commit cae954f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ export default function EditDialog(props: EditDialogProps): ReactElement {
});
if (typeof cleanedWord === "string") {
toast.error(t(cleanedWord));
return Promise.reject(t(cleanedWord));
return;
}

// Update in backend
Expand Down

0 comments on commit cae954f

Please sign in to comment.