Merge pull request #100 from Safelite/defect/method-signature-not-matched

Match the method signature on navigate()
This commit is contained in:
Jason Wheeler 2023-01-10 15:36:20 -05:00 committed by GitHub
commit e9f3587b5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -129,7 +129,7 @@ router.overrideNavigation = (
router.navigate = (scenario, currentRoute, optionalQuery = {}, optionalParams = {}, optionalPageData = {}) => {
navigate(scenario, currentRoute, false, optionalQuery, optionalParams, optionalPageData);
navigate(scenario, currentRoute, optionalQuery, optionalParams, optionalPageData);
}