From a683627d955bbd1249e6cb6471eb05bd806f86e1 Mon Sep 17 00:00:00 2001 From: Johan Gunawan Date: Tue, 10 Jan 2023 15:18:30 -0500 Subject: [PATCH] Match the method signature on navigate() The unmatched method signature is causing pageData not being updated correctly. --- src/router/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/index.js b/src/router/index.js index e5947696..165215ad 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -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); }