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
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,8 +17,7 @@ import {
IconRecoveryEmail,
IconSignOut,
IconSkull,
IconUser,
IconVerified
IconUser
} from '@audius/harmony-native'
import {
ScrollView,
Expand DownExpand Up@@ -98,9 +97,9 @@ export const AccountSettingsScreen = () => {
}
}, [recoveryEmailStatus, toast])

const handlePressVerification = useCallback(() => {
navigation.push('AccountVerificationScreen')
}, [navigation])
// const handlePressVerification = useCallback(() => {
// navigation.push('AccountVerificationScreen')
// }, [navigation])

const handlePressChangeEmail = useCallback(() => {
navigation.push('ChangeEmail')
Expand DownExpand Up@@ -148,13 +147,13 @@ export const AccountSettingsScreen = () => {
buttonTitle={messages.recoveryButtonTitle}
onPress={handlePressRecoveryEmail}
/>
<AccountSettingsItem
{/* <AccountSettingsItem
title={messages.verifyTitle}
titleIcon={IconVerified}
description={messages.verifyDescription}
buttonTitle={messages.verifyButtonTitle}
onPress={handlePressVerification}
/>
/> */}
<AccountSettingsItem
title={messages.emailTitle}
titleIcon={IconEmailAddress}
Expand Down