From f71d2199fc92b1663f517b202084563058e24640 Mon Sep 17 00:00:00 2001 From: Zane <75694352+zanesq@users.noreply.github.com> Date: Mon, 8 Dec 2025 14:37:11 -0800 Subject: [PATCH] Hide recipe icon in empty chat (#6022) --- ui/desktop/src/components/ChatInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/desktop/src/components/ChatInput.tsx b/ui/desktop/src/components/ChatInput.tsx index ecf8fe11..3b972dc9 100644 --- a/ui/desktop/src/components/ChatInput.tsx +++ b/ui/desktop/src/components/ChatInput.tsx @@ -1507,7 +1507,7 @@ export default function ChatInput({ )} - {sessionId && ( + {sessionId && messages.length > 0 && ( <>