Skip to content

Commit

Permalink
display: Fix issue with the grid layout of the results
Browse files Browse the repository at this point in the history
  • Loading branch information
psaiz committed Jan 23, 2024
1 parent 17e4ec1 commit 0c03378
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const CODResultsGridItem = ({ result }) => {

const CODResultsGridContainer = ({ results }) => {
const _results = results.map((result, index) => (
<CODResultsGridItem result={result} key={index} />
<CODResultsGridItem result={result.props.result} key={index} />
));

return (
Expand Down

0 comments on commit 0c03378

Please sign in to comment.