diff --git a/airflow/ui/src/layouts/Nav/BrowseButton.tsx b/airflow/ui/src/layouts/Nav/BrowseButton.tsx index 37e16a00332e6..de58ecff2f3f2 100644 --- a/airflow/ui/src/layouts/Nav/BrowseButton.tsx +++ b/airflow/ui/src/layouts/Nav/BrowseButton.tsx @@ -16,8 +16,8 @@ * specific language governing permissions and limitations * under the License. */ -import { Link } from "@chakra-ui/react"; import { FiGlobe } from "react-icons/fi"; +import { Link } from "react-router-dom"; import { Menu } from "src/components/ui"; @@ -25,7 +25,7 @@ import { NavButton } from "./NavButton"; const links = [ { - href: `/webapp/events`, + href: "/events", title: "Events", }, ]; @@ -38,7 +38,7 @@ export const BrowseButton = () => ( {links.map((link) => ( - + {link.title}