From 05fdad5c79729c994531c4436811b8fd82cbe529 Mon Sep 17 00:00:00 2001 From: Henrique Barreto Date: Thu, 5 Dec 2024 15:53:33 +0000 Subject: [PATCH] feat: GROW-315 - improve inkeep settings --- src/client/thirdParty/Inkeep.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/thirdParty/Inkeep.tsx b/src/client/thirdParty/Inkeep.tsx index ef6f60c3..de94fed6 100644 --- a/src/client/thirdParty/Inkeep.tsx +++ b/src/client/thirdParty/Inkeep.tsx @@ -46,7 +46,7 @@ const useInkeepSettings = (): InkeepSharedSettings => { } }, }; - const modalSettings: InkeepModalSettings = {}; + const modalSettings: InkeepModalSettings = { defaultView: 'AI_CHAT', forceInitialDefaultView: true } const searchSettings: InkeepSearchSettings = {}; const aiChatSettings: InkeepAIChatSettings = { chatSubjectName: 'Fingerprint', @@ -87,6 +87,7 @@ const useInkeepSettings = (): InkeepSharedSettings => { 'Fingerprint Identification vs FingerprintJS?', 'How to proxy requests through my own domain?', ], + shouldOpenLinksInNewTab: true, }; return { baseSettings, aiChatSettings, searchSettings, modalSettings };