Skip to content

Commit

Permalink
fix typo in route definitions (#1352)
Browse files Browse the repository at this point in the history
  • Loading branch information
rikimaru0345 authored Aug 1, 2024
1 parent 482145f commit c507c09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,10 +283,10 @@ export const APP_ROUTES: IRouteEntry[] = [
MakeRoute<{ clusterName: string, connector: string }>('/connect-clusters/:clusterName/:connector', KafkaConnectorDetails, 'Connector Details'),

MakeRoute<{}>('/transforms-setup', TransformsSetup, 'Transforms', undefined, true,
routeVisibility(false, [Feature.TransformsService])
routeVisibility(true, [Feature.TransformsService])
),
MakeRoute<{}>('/transforms', TransformsList, 'Transforms', MdOutlineSmartToy, true,
routeVisibility(false, [Feature.TransformsService])
routeVisibility(true, [Feature.TransformsService])
),
MakeRoute<{ transformName: string }>('/transforms/:transformName', TransformDetails, 'Transforms'),

Expand Down

0 comments on commit c507c09

Please sign in to comment.