Skip to content

Commit

Permalink
Fixed eslint 'Switch' to 'Routes' in Entity Analytics (elastic#196433)
Browse files Browse the repository at this point in the history
Fixed a typing issue, due to a merge conflict related to ESLint changes
  • Loading branch information
jaredburgettelastic authored Oct 15, 2024
1 parent a63b939 commit dbde89f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ const EntityAnalyticsEntityStoreTelemetry = () => (

const EntityAnalyticsEntityStoreContainer: React.FC = React.memo(() => {
return (
<Switch>
<Routes>
<Route
path={ENTITY_ANALYTICS_ENTITY_STORE_MANAGEMENT_PATH}
exact
component={EntityAnalyticsEntityStoreTelemetry}
/>
<Route component={NotFoundPage} />
</Switch>
</Routes>
);
});

Expand Down

0 comments on commit dbde89f

Please sign in to comment.