From 893ddd68ffbe28bdf99cb4f822b12017d91dd0d3 Mon Sep 17 00:00:00 2001 From: Matt Rothenberg Date: Tue, 17 Feb 2026 09:35:03 -0500 Subject: [PATCH 1/2] Make example prompts clickable in empty state --- src/app.tsx | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/src/app.tsx b/src/app.tsx index 0605def..0a529ab 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -320,7 +320,30 @@ function Chat() { } title="Start a conversation" - description={`Try "What's the weather in Paris?", "What timezone am I in?", "Calculate 5000 * 3", or "Remind me in 5 minutes to take a break"`} + contents={ +
+ {[ + "What's the weather in Paris?", + "What timezone am I in?", + "Calculate 5000 * 3", + "Remind me in 5 minutes to take a break" + ].map((prompt) => ( + + ))} +
+ } /> )} From 30461e0c292fb0a0f6660f7679eeecf2870d5ab4 Mon Sep 17 00:00:00 2001 From: Sunil Pai Date: Tue, 17 Feb 2026 16:53:47 +0000 Subject: [PATCH 2/2] Update app.tsx --- src/app.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app.tsx b/src/app.tsx index 0a529ab..3063e6a 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -332,6 +332,7 @@ function Chat() { key={prompt} variant="outline" size="sm" + disabled={isStreaming} onClick={() => { sendMessage({ role: "user",