Skip to content

Commit

Permalink
fix(client): update user display_name field in users page
Browse files Browse the repository at this point in the history
  • Loading branch information
lareii committed Sep 11, 2024
1 parent 3bd2b8b commit f1cbaa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/app/users/[slug]/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default function Page({ params }) {
<div className='mt-3 mb-5'>
<div className='flex justify-between'>
<div>
<div className='text-xl font-bold'>{display_name}</div>
<div className='text-xl font-bold'>{user.display_name}</div>
<div className='text-zinc-400 text-sm'>
@{user.username}
</div>
Expand Down

0 comments on commit f1cbaa0

Please sign in to comment.