From a34274d45662d9621470f375860624f38ee7b4da Mon Sep 17 00:00:00 2001 From: patriciaflutterflow Date: Tue, 5 Aug 2025 18:47:34 -0700 Subject: [PATCH] chatbot now working again, set to true to enable :) --- src/js/chatbot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/chatbot.js b/src/js/chatbot.js index 8949895f..876d73db 100644 --- a/src/js/chatbot.js +++ b/src/js/chatbot.js @@ -3,7 +3,7 @@ if (typeof window === 'undefined') return; // TEMPORARY DISABLE FLAG - Set to false to disable chatbot - const CHATBOT_ENABLED = false; + const CHATBOT_ENABLED = true; if (!CHATBOT_ENABLED) { console.log('Chatbot is temporarily disabled');