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)}