diff options
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/renderer/components/Support.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gui/src/renderer/components/Support.tsx b/gui/src/renderer/components/Support.tsx index 6e251a86dc..9436636516 100644 --- a/gui/src/renderer/components/Support.tsx +++ b/gui/src/renderer/components/Support.tsx @@ -112,7 +112,11 @@ export default class Support extends React.Component<ISupportProps, ISupportStat const sendState = this.state.sendState; if (sendState === SendState.Initial && this.state.email.length === 0) { this.setState({ sendState: SendState.Confirm }); - } else if (sendState === SendState.Initial || sendState === SendState.Confirm) { + } else if ( + sendState === SendState.Initial || + sendState === SendState.Confirm || + sendState === SendState.Failed + ) { try { await this.sendReport(); } catch (error) { |
