diff --git a/src/App.jsx b/src/App.jsx index e7b925d..e1be0fa 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -2575,6 +2575,7 @@ function LocationSignalMap({ countries, locations }) { } function UptimePage({ uptime }) { + const [hoveredSnapshot, setHoveredSnapshot] = useState(null) const checks = uptime.checks const history = uptime.history const operationalCount = checks.filter((check) => check.ok).length @@ -2622,21 +2623,41 @@ function UptimePage({ uptime }) {
-