fix: Reduce double reporting of errors

This commit is contained in:
Tom Moor
2020-12-21 21:10:25 -08:00
parent 7d44e1aeeb
commit ea57cef89c
4 changed files with 14 additions and 1 deletions

View File

@@ -28,7 +28,6 @@ class UserDelete extends React.Component<Props> {
this.props.auth.logout();
} catch (error) {
this.props.ui.showToast(error.message);
throw error;
} finally {
this.isDeleting = false;
}