Skip to content

Commit

Permalink
Merge pull request #23708 from Expensify/monil-fixTextStyle
Browse files Browse the repository at this point in the history
Use correct component Text component and fix style
  • Loading branch information
MonilBhavsar authored Jul 27, 2023
2 parents 3cc6fdc + d9d8282 commit 5109691
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/settings/Security/TwoFactorAuth/IsEnabledPage.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React, {useState} from 'react';
import {Text, View, ScrollView} from 'react-native';
import {View, ScrollView} from 'react-native';
import Text from '../../../../components/Text';
import HeaderWithBackButton from '../../../../components/HeaderWithBackButton';
import Navigation from '../../../../libs/Navigation/Navigation';
import ScreenWrapper from '../../../../components/ScreenWrapper';
Expand Down Expand Up @@ -43,7 +44,7 @@ function IsEnabledPage(props) {
containerStyles={[styles.twoFactorAuthSection]}
>
<View style={styles.mv3}>
<Text style={styles.textLabel}>{props.translate('twoFactorAuth.whatIsTwoFactorAuth')}</Text>
<Text>{props.translate('twoFactorAuth.whatIsTwoFactorAuth')}</Text>
</View>
</Section>
<ConfirmModal
Expand Down

0 comments on commit 5109691

Please sign in to comment.