Skip to content

Commit 21fd446

Browse files
authored
Merge pull request #14 from Artemia-project/ui-minor
Hide save btn in welcome msg
2 parents c23320e + 9249aa2 commit 21fd446

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ChatModule.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ const handleSuggestionClick = async (suggestion: string) => {
332332
</p>
333333
)}
334334

335-
{m.type === 'assistant' && (
335+
{m.type === 'assistant' && m.id !== 'welcome' && (
336336
<div className="flex justify-center mt-2 pt-2 border-t border-border/20">
337337
<Button
338338
variant="ghost"

0 commit comments

Comments
 (0)