Skip to content

Commit

Permalink
Fix invalid prop children of type array supplied to I18nProvider (#6698)
Browse files Browse the repository at this point in the history
fix invalid prop children of type array supplied to I18nProvider
  • Loading branch information
chantal-kelm authored May 27, 2024
1 parent cc5fc3f commit cc93456
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ const MitreComponent = props => {
};

return (
<div>
<I18nProvider>
<I18nProvider>
<>
<EuiFlexGroup style={flexGroupStyle}>
<EuiFlexItem>
{isDataSourceLoading && !dataSource ? (
Expand Down Expand Up @@ -211,8 +211,8 @@ const MitreComponent = props => {
</EuiPanel>
</EuiFlexItem>
</EuiFlexGroup>
</I18nProvider>
</div>
</>
</I18nProvider>
);
};

Expand Down

0 comments on commit cc93456

Please sign in to comment.