removed ;

This commit is contained in:
FrankRua 2022-02-03 13:18:02 -05:00
parent 788750bc66
commit 08978f89fc

View file

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