feat: show reset dialog box when user not found in DB#64
Open
xrvnd wants to merge 2 commits into
Open
Conversation
Contributor
|
@xrvnd is attempting to deploy a commit to the coderzs' projects Team on Vercel. A member of the Team first needs to authorize it. |
Owner
|
Can u resolve merge conflicts. Also can we habe our puzzle theme for the dialog box colors |
Contributor
Author
|
Will get on this and push a fix |
Contributor
Author
Contributor
Author
|
@coder-zs-cse review please :) |
Contributor
Author
|
hi @coder-zs-cse , bro review plis |
Contributor
Author
|
@coder-zs-cse review please |
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.

Changes
Backend
validateUser()helper function insrc/services/user/user.tsthat checks DB if user exists/status,/hint,/check) now callvalidateUserbefore processing and returns404 { error: "USER_NOT_FOUND" }if not foundFrontend
404 USER_NOT_FOUNDto regularError("USER_NOT_FOUND")so we can differentiate errorsUserResetDialogcomponent overlays the game with an "Account not found" message and a Reset button, clicking it removesuserIdfromlocalStorageand reloads the pagetoast.errorwas being called during render inDailypage; lifted it to auseEffectHow to test/ Testing screenshots
Insert a fakeuser with a

userIdin the console.Reload the

/dailypage and the reset dialog should appear. Click onResethere.localStorage.userIdis cleared in the local storageCloses #37