diff --git a/native/profile/profile.react.js b/native/profile/profile.react.js --- a/native/profile/profile.react.js +++ b/native/profile/profile.react.js @@ -15,6 +15,7 @@ import DeleteAccount from './delete-account.react.js'; import DevTools from './dev-tools.react.js'; import EditPassword from './edit-password.react.js'; +import EmojiAvatarCreation from './emoji-avatar-creation.react.js'; import PrivacyPreferences from './privacy-preferences.react.js'; import ProfileHeader from './profile-header.react.js'; import ProfileScreen from './profile-screen.react.js'; @@ -27,6 +28,7 @@ ProfileScreenRouteName, EditPasswordRouteName, DeleteAccountRouteName, + EmojiAvatarCreationRouteName, BuildInfoRouteName, DevToolsRouteName, AppearancePreferencesRouteName, @@ -41,6 +43,10 @@ const header = (props: StackHeaderProps) => ; const profileScreenOptions = { headerTitle: 'Profile' }; +const emojiAvatarCreationOptions = { + headerTitle: 'Emoji Avatar Selection', + headerBackTitleVisible: false, +}; const editPasswordOptions = { headerTitle: 'Change password' }; const deleteAccountOptions = { headerTitle: 'Delete account' }; const buildInfoOptions = { headerTitle: 'Build info' }; @@ -108,6 +114,11 @@ component={ProfileScreen} options={profileScreenOptions} /> +