aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/GroupedTable.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/app/components/GroupedTable.tsx')
-rw-r--r--src/frontend/app/components/GroupedTable.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/app/components/GroupedTable.tsx b/src/frontend/app/components/GroupedTable.tsx
index f116537..3a799a7 100644
--- a/src/frontend/app/components/GroupedTable.tsx
+++ b/src/frontend/app/components/GroupedTable.tsx
@@ -29,7 +29,7 @@ export const GroupedTable: React.FC<GroupedTable> = ({
acc[estimate.line].push(estimate);
return acc;
},
- {} as Record<string, typeof data>,
+ {} as Record<string, typeof data>
);
const sortedLines = Object.keys(groupedEstimates).sort((a, b) => {
@@ -72,7 +72,7 @@ export const GroupedTable: React.FC<GroupedTable> = ({
</td>
)}
</tr>
- )),
+ ))
)}
</tbody>