From c117ea22a5100db1cb301ef650cab9185659540a Mon Sep 17 00:00:00 2001 From: Shafin Al Karim <129021108+shafin-deriv@users.noreply.github.com> Date: Wed, 11 Oct 2023 22:49:15 +0800 Subject: [PATCH] fix: remove bot bundle chunk from landing page (#10403) --- 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'); }) );