Skip to content

Commit

Permalink
style: Automated code fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eea-jenkins committed Nov 21, 2023
1 parent 866e3bf commit 0a5a555
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,10 @@ const View = (props) => {
dataProvider,
props.editMode,
)}
{Object.entries(dataProvider.children).map(
([cildrenKey, children]) =>
providerView(cildrenKey, children, props.editMode),
{Object.entries(
dataProvider.children,
).map(([cildrenKey, children]) =>
providerView(cildrenKey, children, props.editMode),
)}
</div>
);
Expand Down

0 comments on commit 0a5a555

Please sign in to comment.