diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a68937..8194a0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +- [PR-64](https://github.com/itk-dev/aapodwalk/pull/64) + - Clean up some rough edges in the design + - [PR-63](https://github.com/itk-dev/aapodwalk/pull/63) - react 18 -> [react 19](https://react.dev/blog/2024/12/05/react-19) - react-dom 18 -> 19 diff --git a/index.html b/index.html index b6a7230..7be6b85 100644 --- a/index.html +++ b/index.html @@ -20,7 +20,7 @@ Podwalk - +
diff --git a/src/App.jsx b/src/App.jsx index 6b86d27..0774d79 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,5 +1,5 @@ import React, { useEffect, useState, useMemo } from "react"; -import { Switch, Route } from "react-router-dom"; +import { Switch, Route, Link } from "react-router-dom"; import LatLongContext from "./context/latitude-longitude-context"; import PermissionContext from "./context/permission-context"; import RouteContext from "./context/RouteContext"; @@ -13,7 +13,6 @@ import SkipLinks from "./components/SkipLinks"; import FAQ from "./components/FAQ"; import SeeOnMap from "./components/SeeOnMap"; import MessageContext from "./context/MessageContext"; -import { Link } from "react-router-dom"; import NavigationHelp from "./components/NavigationHelp"; import MapConsentBanner from "./components/MapConsentBanner"; @@ -93,7 +92,7 @@ function App() { }, [openStreetMapConsent]); return ( -
+
({ openStreetMapConsent, setOpenStreetMapConsent }), [openStreetMapConsent])} diff --git a/src/components/Navbar.jsx b/src/components/Navbar.jsx index c0ef47c..1a3f406 100644 --- a/src/components/Navbar.jsx +++ b/src/components/Navbar.jsx @@ -9,7 +9,7 @@ const Navbar = () => { const { pathname } = useLocation(); return ( -