Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
New User Onboarding Flow UI #16501
New User Onboarding Flow UI #16501
Changes from 17 commits
cb6af81
e853507
d4b7832
6cc4f18
5307855
f78b0b2
066820a
74263bc
05ebdd7
f078fcd
aa05a79
4ec1fd7
02b3cd3
0f12ff5
273525e
189542b
f2d868e
6b91b5d
1a5d15c
a676453
cae16dd
1cc9482
3cb0b60
c019664
9f526a8
3be00ab
6a9e763
f49cd2f
452874b
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Suggestion (non-blocking): How about we split it out in chunks, it can be also useful in the future to reuse the similar functionality any other place
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.
Yah, good thinking. I'm going to hold off on extracting these for now until there's another mutation that would use the function, but that would be a good way to share some logic.
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.
Suggestion (non-blocking): We can add more context to get more info about this check.
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.
AFAIK these props are for Onboarding Forms.
isLoading
looks ambiguous as we are already using in List Workspace (code). e.g.isFormLoading
could be good. Or for quick we can just add the comment for context.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.
Good point, the more I think about it,
isLoading
isn't very indicative of what's happening here, it's really indicating the form is saving, and puts it in a disabled state. I'll adjust it to something likeisSaving
- and probably need to add another check to avoid redundant submits if that flag is set.