From 3ccc322111d8fd728a80744742f7835e3d4d5ad2 Mon Sep 17 00:00:00 2001 From: Eli Kinsey Date: Thu, 9 Jan 2025 07:43:40 -0800 Subject: [PATCH] disable question highlight --- src/hooks/useInkeepSettings.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hooks/useInkeepSettings.ts b/src/hooks/useInkeepSettings.ts index 732f7d503e3c..b05ddc2b28ff 100644 --- a/src/hooks/useInkeepSettings.ts +++ b/src/hooks/useInkeepSettings.ts @@ -8,7 +8,7 @@ type InkeepSharedSettings = { } export const defaultQuickQuestions = [ - 'Why isn\'t my data showing up?', + "Why isn't my data showing up?", 'How do I set up a reverse proxy?', 'How do I identify users?', 'What are person profiles and how are they billed?', @@ -55,6 +55,7 @@ const useInkeepSettings = (): InkeepSharedSettings => { botAvatarSrcUrl: 'https://res.cloudinary.com/dmukukwp6/image/upload/v1688579513/max_c5dd553db8.png', botName: 'Max AI', quickQuestions: defaultQuickQuestions, + shouldHighlightFirstQuickQuestion: false, } return { baseSettings, aiChatSettings }