chore: naming

This commit is contained in:
GleidsonDaniel 2024-02-20 17:59:44 -03:00
parent f19b16072d
commit 04dd2ac162
1 changed files with 2 additions and 2 deletions

View File

@ -303,7 +303,7 @@ class RightButtonsContainer extends Component<IRightButtonsProps, IRigthButtonsS
showActionSheet({ options }); showActionSheet({ options });
}; };
goToNotification = () => { navigateToNotificationOrPushTroubleshoot = () => {
const { room } = this; const { room } = this;
const { rid, navigation, isMasterDetail, issuesWithNotifications } = this.props; const { rid, navigation, isMasterDetail, issuesWithNotifications } = this.props;
@ -390,7 +390,7 @@ class RightButtonsContainer extends Component<IRightButtonsProps, IRigthButtonsS
<HeaderButton.Item <HeaderButton.Item
color={issuesWithNotifications ? colors!.fontDanger : colors!.headerTintColor} color={issuesWithNotifications ? colors!.fontDanger : colors!.headerTintColor}
iconName='notification-disabled' iconName='notification-disabled'
onPress={this.goToNotification} onPress={this.navigateToNotificationOrPushTroubleshoot}
testID='room-view-push-troubleshoot' testID='room-view-push-troubleshoot'
/> />
) : null} ) : null}