From f3120ef80dde21ad766d67d20f1708dd5426c199 Mon Sep 17 00:00:00 2001 From: Katie Date: Tue, 19 Jul 2022 15:46:48 -0400 Subject: [PATCH] CSR-530 Cleanup --- src/router/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/index.js b/src/router/index.js index f01fb4ff6..d2a5ee154 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -196,7 +196,7 @@ async function navigate(scenario, currentRoute, optionalQuery = {}, optionalPara // Get navigation map depending on the scenario and the current 'page' you're on. function getNavigationMap(scenario, currentRoute) { const fmgPageValue = currentRoute.query.fmgPage; - let matchedQueryValue = routingTable(store) + const matchedQueryValue = routingTable(store) .filter( (item) => item.fmgPageValue === fmgPageValue &&