Fixes to onboarding
This commit is contained in:
parent
0fc8ef3358
commit
cc015d1686
3 changed files with 6 additions and 1 deletions
|
@ -55,6 +55,7 @@ export class OnboardModel {
|
|||
i++
|
||||
if (i >= OnboardStageOrder.length) {
|
||||
this.isOnboarding = false
|
||||
this.stage = OnboardStageOrder[0] // in case they make a new account
|
||||
} else {
|
||||
this.stage = OnboardStageOrder[i]
|
||||
}
|
||||
|
|
|
@ -41,7 +41,9 @@ export const Settings = observer(function Settings({visible}: ScreenParams) {
|
|||
handle={store.me.handle || ''}
|
||||
/>
|
||||
<View style={[s.ml10]}>
|
||||
<Text style={[s.f18]}>{store.me.displayName}</Text>
|
||||
<Text style={[s.f18]}>
|
||||
{store.me.displayName || store.me.handle}
|
||||
</Text>
|
||||
<Text style={[s.gray5]}>@{store.me.handle}</Text>
|
||||
</View>
|
||||
</View>
|
||||
|
|
|
@ -10,6 +10,8 @@ Paul's todo list
|
|||
- Setup profile?
|
||||
- Create scene
|
||||
> Set profile during creation
|
||||
- Onboarding
|
||||
- Finish explainers
|
||||
- Discover scenes view
|
||||
- *
|
||||
- Invite to scene
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue