Skip to content

Commit

Permalink
refactor: remove useless divs
Browse files Browse the repository at this point in the history
  • Loading branch information
jy95 committed Dec 1, 2024
1 parent b1b1ec3 commit fb90356
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/[locale]/backlog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function BacklogViewer() {
headerAlign: 'center',
renderCell: ({ value }) => (
<Tooltip title={value} aria-label={value}>
<div>{value}</div>
{value}
</Tooltip>
),
width: 270
Expand All @@ -49,7 +49,7 @@ export default function BacklogViewer() {
headerAlign: 'center',
renderCell: ({ value }) => (
<Tooltip title={value || ""} aria-label={value || ""}>
<div>{value || ""}</div>
{value || ""}
</Tooltip>
),
width: 270
Expand Down

0 comments on commit fb90356

Please sign in to comment.