From b568ccd9973e12312e8dbbaee669958901ebef46 Mon Sep 17 00:00:00 2001 From: Sandeep Rajput <90243468+sandeep-deriv@users.noreply.github.com> Date: Thu, 12 Oct 2023 18:28:02 +0800 Subject: [PATCH] Revert "fix: remove bot bundle chunk from landing page (#10403)" (#10624) This reverts commit c117ea22a5100db1cb301ef650cab9185659540a. --- 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 db1acc737eb4..f053ce352c33 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-web-ui-app" */ '@deriv/bot-web-ui'); + return import(/* webpackChunkName: "bot" */ '@deriv/bot-web-ui'); }) );