diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-09-28 14:00:40 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-09-28 14:00:40 -0500 |
commit | e6627183e1f0552588893851815f43021b4d610d (patch) | |
tree | 7e708d09159a584fb647c52598fd701b39b73b12 /src/view/shell/mobile/index.tsx | |
parent | 5909509beac34784b068057b9330f82317bd8480 (diff) | |
download | voidsky-e6627183e1f0552588893851815f43021b4d610d.tar.zst |
Switch to one default avi
Diffstat (limited to 'src/view/shell/mobile/index.tsx')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index d289b126d..25ee30e34 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -33,7 +33,7 @@ import {createBackMenu, createForwardMenu} from './history-menu' import {createAccountsMenu} from './accounts-menu' import {createLocationMenu} from './location-menu' import {s, colors} from '../../lib/styles' -import {AVIS} from '../../lib/assets' +import {DEF_AVATER} from '../../lib/assets' const locationIconNeedsNudgeUp = (icon: IconProp) => icon === 'house' const SWIPE_GESTURE_DIST_TRIGGER = 0.5 @@ -186,7 +186,7 @@ export const MobileShell: React.FC = observer(() => { <View style={styles.outerContainer}> <View style={styles.topBar}> <TouchableOpacity onPress={onPressAvi}> - <Image style={styles.avi} source={AVIS['alice.test']} /> + <Image style={styles.avi} source={DEF_AVATER} /> </TouchableOpacity> <Location icon={screenRenderDesc.icon} |