From 7baba13704b5abbe392ac9aef648cf74bfe2fab1 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 }