diff --git a/src/router/index.js b/src/router/index.js index 02859e660..133a4106e 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -142,7 +142,7 @@ function navigate(scenario, currentRoute, invalidateOnSave, optionalQuery = {}, } else if (matchingScenarioMap.destinationUrl !== undefined) { navigateToUrl(matchingScenarioMap.destinationUrl); } -}; +} // Get navigation map depending on the scenario and the current 'page' you're on. function getNavigationMap(scenario, currentRoute) { @@ -156,7 +156,7 @@ function getNavigationMap(scenario, currentRoute) { .map((m) => m.maps.filter((map) => map.scenario === scenario)); return matchedQueryValue[0][0]; -}; +} //---------------------------------------------------------- Private Functions ----------------------------------------------------------