From 23e1d78e8b2724033204d4e475c61589f7f21330 Mon Sep 17 00:00:00 2001 From: Henrique Barreto <140650817+hba-fingerprint@users.noreply.github.com> Date: Mon, 9 Dec 2024 11:08:00 +0000 Subject: [PATCH] feat: GROW-315 - improve inkeep settings (#186) --- 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..6b839de9 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 };