diff --git a/src/components/BaseLink/index.js b/src/components/BaseLink/index.js index 7f35cc7..9a3018d 100644 --- a/src/components/BaseLink/index.js +++ b/src/components/BaseLink/index.js @@ -7,8 +7,7 @@ import {Link, useRouteMatch} from "react-router-dom" export default function BaseLink({children, className, href, disabled, ...props}) { const locationMatch = useRouteMatch({ path: href, - strict: true, - sensitive: true, + exact: true, }) const activeClassNames = useBluelibClassNames("style-bold", className)