From a489a8d749d4143e968e9f5e2f2cc58fbedce586 Mon Sep 17 00:00:00 2001 From: Brian Hackett Date: Fri, 21 Feb 2025 09:24:07 -0800 Subject: [PATCH] Remove login key requirement --- app/components/chat/Chat.client.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/components/chat/Chat.client.tsx b/app/components/chat/Chat.client.tsx index 0b4952f0..b5bb7eff 100644 --- a/app/components/chat/Chat.client.tsx +++ b/app/components/chat/Chat.client.tsx @@ -336,11 +336,6 @@ export const ChatImpl = memo( } const loginKey = getNutLoginKey(); - if (!loginKey) { - toast.error('Please set a login key in the "User Info" settings.'); - return; - } - const anthropicApiKey = Cookies.get(anthropicApiKeyCookieName); if (!loginKey && !anthropicApiKey) {