From 225ec3d1747ba35d8561f041d405d9eec585dd0d Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sun, 26 May 2024 17:03:35 -0700 Subject: [PATCH] refac: hide banners if models > 1 --- src/lib/components/chat/Chat.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 10862e56d..7ee7a4f0e 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -1007,7 +1007,7 @@ {initNewChat} /> - {#if $banners.length > 0 && !$chatId} + {#if $banners.length > 0 && !$chatId && selectedModels.length <= 1}