From 834400e5b6eab7a6a65437a4174718cffbfcb0dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20S=C5=82uszniak?= Date: Tue, 2 Jun 2026 19:56:14 +0200 Subject: [PATCH] fix(docs): disable Algolia Ask AI side panel to stop cookie widget overlap The floating Ask AI launcher (.DocSearch-SidepanelButton.floating) is pinned to the bottom-right corner, where it overlaps the GTM-injected cookie-consent widget. Disabling the side panel removes the redundant floating button; Ask AI remains available inside the search modal. --- docs/docusaurus.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index c965f7b715..d63308bdfa 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -198,7 +198,7 @@ const config = { customFields: { algolia: { suggestedQuestions: true, - enableSidePanel: true, + enableSidePanel: false, }, }, };