Remove duplicate Inspect page path (#1891)

This commit is contained in:
Kaan Kabalak
2022-04-22 18:58:40 -07:00
committed by GitHub
parent 5a484550fb
commit c6798a69d9

View File

@@ -50,20 +50,6 @@ const Tools = () => {
);
}}
/>
<Route
path={IAM_PAGES.TOOLS_WATCH}
exact
render={() => {
return (
<FeatureNotAvailablePage
icon={<SupportMenuIcon />}
pageHeaderText={"Support"}
title={"Inspect"}
message={<div>This feature is currently not available.</div>}
/>
);
}}
/>
<Route path={IAM_PAGES.SUPPORT_INSPECT} exact component={Inspect} />
<Route component={NotFoundPage} />
</Switch>