Skip to content

Commit

Permalink
chore: remove extra brackets from Tasks component
Browse files Browse the repository at this point in the history
  • Loading branch information
lwhiteley committed Oct 7, 2024
1 parent d915746 commit 39789bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ui/components/Tasks/Tasks.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function Tasks(props) {
[classes.tableCellRTL]: rtlActive,
});
return (
(<Table className={classes.table}>
<Table className={classes.table}>
<TableBody>
{tasksIndexes.map((value) => (
<TableRow key={value} className={classes.tableRow}>
Expand All @@ -57,7 +57,7 @@ export default function Tasks(props) {
placement='top'
classes={{ tooltip: classes.tooltip }}
>
<IconButton aria-label='Edit' className={classes.tableActionButton} size="large">
<IconButton aria-label='Edit' className={classes.tableActionButton} size='large'>
<Edit className={classes.tableActionButtonIcon + ' ' + classes.edit} />
</IconButton>
</Tooltip>
Expand All @@ -67,15 +67,15 @@ export default function Tasks(props) {
placement='top'
classes={{ tooltip: classes.tooltip }}
>
<IconButton aria-label='Close' className={classes.tableActionButton} size="large">
<IconButton aria-label='Close' className={classes.tableActionButton} size='large'>
<Close className={classes.tableActionButtonIcon + ' ' + classes.close} />
</IconButton>
</Tooltip>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>)
</Table>
);
}

Expand Down

0 comments on commit 39789bb

Please sign in to comment.