-
Notifications
You must be signed in to change notification settings - Fork 5
Make user profile page (without ranking chart) #849
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
Conversation
3ab9f66 to
0469810
Compare
frontend2/src/views/UserProfile.tsx
Outdated
| const isNilOrEmptyStr = (str: string | undefined | null): boolean => { | ||
| return isNil(str) || str === ""; | ||
| }; |
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: move to helpers.ts so we can refactor all uses of this sort of thing
| ); | ||
| }; | ||
|
|
||
| const UserNotFound: React.FC = () => { |
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.
I will change this behavior in #854 yippeeee
lowtorola
left a comment
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.
LGTM! ![]()
lowtorola
left a comment
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.
LGTM! ![]()
the path is
/user/<userid>for these user pagesCLOSES #787 closes #845