Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions src/pages/settings/Profile/Contacts/ContactMethodDetailsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ import ConfirmModal from '../../../../components/ConfirmModal';
import * as User from '../../../../libs/actions/User';
import TextInput from '../../../../components/TextInput';
import CONST from '../../../../CONST';
import Icon from '../../../../components/Icon';
import colors from '../../../../styles/colors';
import Button from '../../../../components/Button';
import * as ErrorUtils from '../../../../libs/ErrorUtils';
import themeColors from '../../../../styles/themes/default';
Expand Down Expand Up @@ -259,15 +257,11 @@ class ContactMethodDetailsPage extends Component {
)}
{!loginData.validatedDate && !isFailedAddContactMethod && (
<View style={[styles.ph5, styles.mt3, styles.mb7]}>
<View style={[styles.flexRow, styles.alignItemsCenter, styles.mb1]}>
<Icon
src={Expensicons.DotIndicator}
fill={colors.green}
/>
<View style={[styles.flex1, styles.ml4]}>
<Text>{this.props.translate('contacts.enterMagicCode', {contactMethod: formattedContactMethod})}</Text>
</View>
</View>
<DotIndicatorMessage
type="success"
style={[styles.mb3]}
Comment thread
dhairyasenjaliya marked this conversation as resolved.
Outdated
messages={{0: this.props.translate('contacts.enterMagicCode', {contactMethod: formattedContactMethod})}}
/>
<TextInput
label={this.props.translate('common.magicCode')}
name="validateCode"
Expand Down