Skip to content

Commit

Permalink
getting rid of react warning that causes unwanted text render on scre…
Browse files Browse the repository at this point in the history
…en - #525
  • Loading branch information
vbojilova committed Dec 3, 2023
1 parent de63e56 commit c110080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/containers/Search/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ export class Search extends React.PureComponent { // eslint-disable-line react/p
</Text>
</Box>
<Box>
{group.get('targets') && group.get('targets').map(
{group.get('targets') && group.get('targets').valueSeq().map(
(target) => {
const hasTargetResults = target.get('results') && target.get('results').size > 0;
if (hasTargetResults) {
Expand Down

0 comments on commit c110080

Please sign in to comment.