Skip to content

Commit

Permalink
Fix welcome message on profile page (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito authored Jun 13, 2024
1 parent fa1061d commit d18ad19
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/profile/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,7 @@ const Profile = () => {
content = (
<div>
<h3 style={{ margin: "1em 0" }}>
Welcome, {user.title + " "}
{user.name}!
Welcome, {user.full_name}!
</h3>
<div style={{ margin: "1em 0" }}>
<Alert variant={user?.timeout ? "success" : "danger"}>
Expand Down

0 comments on commit d18ad19

Please sign in to comment.