Update settings.tsx

This commit is contained in:
Avinash Lingaloo
2022-09-15 12:44:09 +04:00
parent 1e2f0622da
commit a2ba20478a

View File

@@ -146,14 +146,14 @@ const Settings = ({componentId, helpLink, showHelp, siteName}: SettingsProps) =>
/>
{Platform.OS === 'android' && <View style={styles.helpGroup}/>}
{showHelp &&
<SettingItem
optionLabelTextStyle={{color: theme.linkColor}}
onPress={openHelp}
optionName='help'
separator={false}
testID='settings.help.option'
type='default'
/>
<SettingItem
optionLabelTextStyle={{color: theme.linkColor}}
onPress={openHelp}
optionName='help'
separator={false}
testID='settings.help.option'
type='default'
/>
}
</SettingContainer>
);