-
Notifications
You must be signed in to change notification settings - Fork 586
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Additions to custom user data #6221
Additions to custom user data #6221
Conversation
<View style={styles.status}> | ||
<Text style={styles.statusText}> | ||
Team: {user.customData.team} | ||
</Text> | ||
</View> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Just moved this above the "Connected" text.
But also, removed the ?
after customData
as it will always return a record.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes here and some in StoreScreen.tsx
(i.e. moving the responsibility of deleting the user to this file) are the same as in the previous PR. But since this one will be merged after, the previous changes probably would have been overwritten had it not been changed here as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks so much for putting some final polish on this!
What, How & Why?
Some additions/updates to the custom user data addition to the example app:
onUserCreation
callback to be run as anApplication Authentication
in order to run in the context of the existing app user.☑️ ToDos
--