Closed
Conversation
Show a "You made it to the end!" screen after users submit the feedback form instead of immediately jumping back to the login screen. The screen displays a thank you message and a Close button that resets the session. https://claude.ai/code/session_01XZv2TCCJX7ifRBWgzroSGt
|
Does this conflict with #68 ? |
Contributor
|
Yes this is an overly complex version of #68, closing. Please reopen if current solution does not suffice |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Added a new final step (step 100) to the onboarding flow that displays a thank you message to users after they complete the feedback form. This provides better closure to the onboarding experience.
Key Changes
ThankYoucomponent (src/views/onboarding/100_ThankYou.tsx) that displays a thank you message with optional close buttonSTEP_NAMESandSTEP_COMPONENTSmappingsFeedbackcomponent to navigate to step 100 instead of immediately resetting the store when feedback is submittedFeedbackto usesetOnboardingStepinstead ofresetStorefor better control over the flowImplementation Details
ThankYoucomponent accepts optionalclassNameandlastEntryprops to control styling and button visibilitylastEntryis true, allowing flexibility in how the step is usedhttps://claude.ai/code/session_01XZv2TCCJX7ifRBWgzroSGt