There was an error while loading. Please reload this page.
1 parent 044ae1b commit 4d9d578Copy full SHA for 4d9d578
1 file changed
src/lib/components/chat/Suggestions.svelte
@@ -65,7 +65,7 @@
65
</script>
66
67
<div
68
- class="mb-1 flex gap-1 text-xs font-medium items-center text-gray-600 dark:text-gray-400 hidden"
+ class="mb-1 flex gap-1 text-xs font-medium items-center text-gray-600 dark:text-gray-400"
69
>
70
{#if filteredPrompts.length > 0}
71
<Bolt />
@@ -83,7 +83,7 @@
83
{/if}
84
</div>
85
86
-<div class="h-40 w-full hidden">
+<div class="h-40 w-full">
87
88
<div role="list" class="max-h-40 overflow-auto scrollbar-none items-start {className}">
89
{#each filteredPrompts as prompt, idx (prompt.id || `${prompt.content}-${idx}`)}
0 commit comments