Skip to content

Commit

Permalink
Add reputation points to profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
ozdentarikcan committed Dec 12, 2024
1 parent 3870c66 commit 4742d69
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions frontend/src/routes/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,15 @@ export default function Profile() {
)
)}
</div>
{profile.reputationPoints && (
<div className="flex flex-col">
<div className="flex flex-wrap gap-2">
<span className="flex items-center gap-2">
<span><strong>Reputation Points:</strong> {profile.reputationPoints}</span>
</span>
</div>
</div>
)}
{profile.followedTags && (
<div className="flex flex-col">
<div className="flex flex-wrap gap-2">
Expand Down

0 comments on commit 4742d69

Please sign in to comment.