()
| 29 | }; |
| 30 | class ReportHandler extends React.PureComponent<Props> { |
| 31 | componentDidMount() { |
| 32 | if (this.props.canSendReports) { |
| 33 | this.dispatchSendReports(this.props.queuedReports); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | componentDidUpdate(prevProps: Props) { |
| 38 | if (!this.props.canSendReports) { |
nothing calls this directly
no test coverage detected