diff options
Diffstat (limited to 'src/view/screens/Settings.tsx')
-rw-r--r-- | src/view/screens/Settings.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/view/screens/Settings.tsx b/src/view/screens/Settings.tsx index a0aec89f3..b7344cf0d 100644 --- a/src/view/screens/Settings.tsx +++ b/src/view/screens/Settings.tsx @@ -8,14 +8,17 @@ import {ViewHeader} from '../com/util/ViewHeader' import {Link} from '../com/util/Link' import {UserAvatar} from '../com/util/UserAvatar' -export const Settings = observer(function Settings({visible}: ScreenParams) { +export const Settings = observer(function Settings({ + navIdx, + visible, +}: ScreenParams) { const store = useStores() useEffect(() => { if (!visible) { return } - store.nav.setTitle('Settings') + store.nav.setTitle(navIdx, 'Settings') }, [visible, store]) const onPressSignout = () => { |