Skip to content

Commit

Permalink
fix: change <> to React.Fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
NasgulNexus committed Aug 21, 2023
1 parent 00c9b00 commit b44f6fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,5 @@ export const ArrayBaseView: ArrayView = ({spec, name, value = []}) => {
return null;
}

return <>{items}</>;
return <React.Fragment>{items}</React.Fragment>;
};

0 comments on commit b44f6fb

Please sign in to comment.