Remove useless if statement

pull/21833/head
Travis Ralston 2020-07-24 14:07:37 -06:00
parent 593b472e50
commit 8e7b60b11e
1 changed files with 1 additions and 3 deletions

View File

@ -72,9 +72,7 @@ export default class NotificationBadge extends React.PureComponent<XOR<IProps, I
public componentWillUnmount() { public componentWillUnmount() {
SettingsStore.unwatchSetting(this.countWatcherRef); SettingsStore.unwatchSetting(this.countWatcherRef);
if (this.props.notification) { this.props.notification.off(NOTIFICATION_STATE_UPDATE, this.onNotificationUpdate);
this.props.notification.off(NOTIFICATION_STATE_UPDATE, this.onNotificationUpdate);
}
} }
public componentDidUpdate(prevProps: Readonly<IProps>) { public componentDidUpdate(prevProps: Readonly<IProps>) {