Skip to content

Commit

Permalink
Replace instead of redirect connection detail index -> status (#12261)
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnaglick authored Apr 25, 2022
1 parent a5b4644 commit db9fa0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const ConnectionItemPage: React.FC = () => {
element={<TransformationView connection={connection} />}
/>
<Route path={ConnectionSettingsRoutes.SETTINGS} element={<SettingsView connectionId={connectionId} />} />
<Route index element={<Navigate to={ConnectionSettingsRoutes.STATUS} />} />
<Route index element={<Navigate to={ConnectionSettingsRoutes.STATUS} replace={true} />} />
</Routes>
</Suspense>
</MainPageWithScroll>
Expand Down

0 comments on commit db9fa0e

Please sign in to comment.