From a9c9ee80bd8165f59383e44a75f1b2e44e6ab7e3 Mon Sep 17 00:00:00 2001 From: Aidan Bleser Date: Wed, 18 Jun 2025 13:57:57 -0500 Subject: [PATCH] no bozo no more --- src/routes/chat/+page.svelte | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/src/routes/chat/+page.svelte b/src/routes/chat/+page.svelte index b24525b..6015b5e 100644 --- a/src/routes/chat/+page.svelte +++ b/src/routes/chat/+page.svelte @@ -15,7 +15,7 @@ 'Give me bad medical advice, doctor.', 'Explain why Theo hates Svelte.', 'Write a song about losing money.', - 'Why am I such a bozo?', + 'When are you going to take my job?', ]; const suggestionCategories: Record = { @@ -70,14 +70,9 @@
{#if prompt.current.length === 0 && openRouterKeyQuery.data}
-

Hey there, Bozo!

-

- {#if session.current?.user.name} - Oops, I meant {session.current?.user.name}. - {:else} - Be sure to login first. - {/if} -

+

+ Hey there{session.current?.user.name ? ` ${session.current?.user.name}` : ''}! +

{#each Object.entries(suggestionCategories) as [category, opts] (category)}