Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
priley86 committed Mar 27, 2019
1 parent e8bce93 commit b0a1a4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class ContextBody extends React.Component {

const TableBody = props => (
<TableContext.Consumer>
{({ headerData, rows }) => <ContextBody {...props} headerData={headerData} rows={props.rowsToRender || rows} />}
{({ headerData, rows }) => <ContextBody headerData={headerData} rows={props.rowsToRender || rows} {...props} />}
</TableContext.Consumer>
);

Expand Down

0 comments on commit b0a1a4c

Please sign in to comment.