From 82522114a7c6607e63da9fd4bb47b1bd357a4d0c Mon Sep 17 00:00:00 2001 From: vinu-deriv <100689171+vinu-deriv@users.noreply.github.com> Date: Fri, 13 Oct 2023 11:04:51 +0400 Subject: [PATCH] Revert "fix: remove bot bundle chunk from landing page (#10403)" (#10663) This reverts commit c117ea22a5100db1cb301ef650cab9185659540a. Co-authored-by: Sandeep Rajput <90243468+sandeep-deriv@users.noreply.github.com> --- 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'); }) );