From a3d6af7b9fac68c33a4645d46842759e3911ddfa Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Thu, 20 Jan 2022 11:30:51 +0000 Subject: [PATCH] Update usage of fetch client app route endpoint --- packages/client/src/stores/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/stores/routes.js b/packages/client/src/stores/routes.js index 6614d4d236..b4274197ae 100644 --- a/packages/client/src/stores/routes.js +++ b/packages/client/src/stores/routes.js @@ -18,7 +18,7 @@ const createRouteStore = () => { const fetchRoutes = async () => { let routeConfig try { - routeConfig = await API.fetchRoutes() + routeConfig = await API.fetchClientAppRoutes() } catch (error) { routeConfig = null }