From bdb8ba267193b1c71e3376e13878f8a0173a36ad Mon Sep 17 00:00:00 2001 From: Emily Przykucki Date: Wed, 4 Feb 2026 11:49:32 -0500 Subject: [PATCH 1/2] fix `View NHSN Button` simple change in how the URL is updated --- app/src/components/NHSNOverviewGraph.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/components/NHSNOverviewGraph.jsx b/app/src/components/NHSNOverviewGraph.jsx index 68e913a..fbf2a9b 100644 --- a/app/src/components/NHSNOverviewGraph.jsx +++ b/app/src/components/NHSNOverviewGraph.jsx @@ -20,7 +20,7 @@ const NHSNOverviewGraph = ( {location} ) => { const [error, setError] = useState(null); const resolvedLocation = location || 'US'; - const isActive = activeViewType === 'nhsn'; + const isActive = activeViewType === 'nhsn '; useEffect(() => { const fetchData = async () => { @@ -170,7 +170,7 @@ const NHSNOverviewGraph = ( {location} ) => {