From 08978f89fc524483fb529beab47769fc5850041d Mon Sep 17 00:00:00 2001 From: FrankRua Date: Thu, 3 Feb 2022 13:18:02 -0500 Subject: [PATCH] removed ; --- src/router/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ----------------------------------------------------------