Skip to content

Commit

Permalink
refactor(mosip#607): [Bhargavi] remove the powered by BLE from list o…
Browse files Browse the repository at this point in the history
…ptions and show it in the bottom in settings
  • Loading branch information
PuBHARGAVI committed Mar 8, 2023
1 parent d2f3241 commit ed9362c
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions screens/Profile/ProfileScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,6 @@ export const ProfileScreen: React.FC<MainRouteProps> = (props) => {
</ListItem.Title>
</ListItem.Content>
</ListItem>
<ListItem bottomDivider>
<ListItem.Content>
<ListItem.Title>
<Text color={Theme.Colors.profileLabel}>
{isBLEEnabled ? t('useBle') : t('useGoogleNearby')}
</Text>
</ListItem.Title>
</ListItem.Content>
</ListItem>
<Credits label={t('credits')} color={Theme.Colors.profileLabel} />
<ListItem bottomDivider onPress={controller.LOGOUT}>
<Icon
Expand All @@ -149,6 +140,14 @@ export const ProfileScreen: React.FC<MainRouteProps> = (props) => {
</ListItem.Title>
</ListItem.Content>
</ListItem>
<Text
weight="semibold"
margin="32 0 0 0"
align="center"
size="smaller"
color={Theme.Colors.profileVersion}>
{isBLEEnabled ? t('useBle') : t('useGoogleNearby')}
</Text>
<Text
weight="semibold"
margin="32 0 0 0"
Expand Down

0 comments on commit ed9362c

Please sign in to comment.