From 79d9c1d4c06b07cc789929fd33e3ab6f09ce8ebd Mon Sep 17 00:00:00 2001 From: shafin-deriv Date: Mon, 2 Oct 2023 11:21:54 +0800 Subject: [PATCH] fix: remove bot bundle chunk from landing page --- packages/core/src/App/Constants/routes-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/App/Constants/routes-config.js b/packages/core/src/App/Constants/routes-config.js index 6a313a33fd74..183a95707cf2 100644 --- a/packages/core/src/App/Constants/routes-config.js +++ b/packages/core/src/App/Constants/routes-config.js @@ -46,7 +46,7 @@ const Cashier = React.lazy(() => const Bot = React.lazy(() => moduleLoader(() => { // eslint-disable-next-line import/no-unresolved - return import(/* webpackChunkName: "bot" */ '@deriv/bot-web-ui'); + return import(/* webpackChunkName: "bot-web-ui-app" */ '@deriv/bot-web-ui'); }) );