Merge pull request #193 from Safelite/feature/buildfix

removed ;
This commit is contained in:
Frank Rua 2022-02-03 13:21:05 -05:00 committed by GitHub
commit a3a3476d8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ----------------------------------------------------------