diff options
Diffstat (limited to 'src/view/shell/mobile/accounts-menu.tsx')
-rw-r--r-- | src/view/shell/mobile/accounts-menu.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/shell/mobile/accounts-menu.tsx b/src/view/shell/mobile/accounts-menu.tsx index b4b538603..ec0e6bf40 100644 --- a/src/view/shell/mobile/accounts-menu.tsx +++ b/src/view/shell/mobile/accounts-menu.tsx @@ -9,7 +9,7 @@ import { } from 'react-native' import RootSiblings from 'react-native-root-siblings' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' -import {AVIS} from '../../lib/assets' +import {DEF_AVATER} from '../../lib/assets' import {s, colors} from '../../lib/styles' export function createAccountsMenu({ @@ -34,7 +34,7 @@ export function createAccountsMenu({ <TouchableOpacity style={[styles.menuItem]} onPress={() => onPressItem(0)}> - <Image style={styles.avi} source={AVIS['alice.test']} /> + <Image style={styles.avi} source={DEF_AVATER} /> <Text style={[styles.label, s.bold]}>Alice</Text> </TouchableOpacity> <TouchableOpacity |