(prevProps)
| 32 | } |
| 33 | |
| 34 | componentDidUpdate(prevProps) { |
| 35 | if (Object.keys(this.props.keyringAttr).length !== Object.keys(prevProps.keyringAttr).length) { |
| 36 | this.fetchKeyringEmails(); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | componentWillUnmount() { |
| 41 | this.setState({names: {}}); |
nothing calls this directly
no outgoing calls
no test coverage detected