Only show trash can when turnId is present

This commit is contained in:
sabaimran 2024-10-31 13:19:16 -07:00
parent e17dc9f7b5
commit a13760640c

View file

@ -744,6 +744,7 @@ const ChatMessage = forwardRef<HTMLDivElement, ChatMessageProps>((props, ref) =>
/>
</button>
))}
{props.chatMessage.turnId && (
<button
title="Delete"
className={`${styles.deleteButton}`}
@ -754,6 +755,7 @@ const ChatMessage = forwardRef<HTMLDivElement, ChatMessageProps>((props, ref) =>
className="hsl(var(--muted-foreground)) hover:text-red-500"
/>
</button>
)}
<button
title="Copy"
className={`${styles.copyButton}`}