Skip to content

Commit 64f01b2

Browse files
committed
Fix bug with table body not rendering
1 parent f76eda0 commit 64f01b2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/partials/Table.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ export const Table = withSimpleErrorBoundary(props => (
1919
</Paper>
2020
))
2121

22-
export const TableBody = props =>
23-
withSimpleErrorBoundary(<MaterialTableBody {...props} />)
22+
export const TableBody = withSimpleErrorBoundary(props => (
23+
<MaterialTableBody {...props} />
24+
))
2425

2526
export const TableCell = withSimpleErrorBoundary(props => (
2627
<StyledTableCell {...props} />

0 commit comments

Comments
 (0)