Skip to content

Commit

Permalink
fix: get ad username
Browse files Browse the repository at this point in the history
  • Loading branch information
tmznwnel00 committed Jun 23, 2024
1 parent 2fbdcd2 commit d6a7dfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/AdminPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const AdminPage = () => {
{advertisements.map(advertisement => (
<TableRow key={advertisement.key}>
<TableCell>{advertisement.message}</TableCell>
<TableCell>{advertisement.userId}</TableCell>
<TableCell>{advertisement.user.username}</TableCell>
<TableCell>
<Button variant="outlined" onClick={() => handleClickOpen(advertisement.imageUrl)}>
미리보기
Expand Down

0 comments on commit d6a7dfe

Please sign in to comment.