diff --git a/components/Chat/Chat.tsx b/components/Chat/Chat.tsx
index 5d1148c..815bde1 100644
--- a/components/Chat/Chat.tsx
+++ b/components/Chat/Chat.tsx
@@ -398,7 +398,7 @@ export const Chat = memo(({ stopConversationRef }: Props) => {
>
{selectedConversation?.messages.length === 0 ? (
<>
-
+
{models.length === 0 ? (
diff --git a/components/Chat/ChatMessage.tsx b/components/Chat/ChatMessage.tsx
index 9c2cdb9..aa0f488 100644
--- a/components/Chat/ChatMessage.tsx
+++ b/components/Chat/ChatMessage.tsx
@@ -126,14 +126,14 @@ export const ChatMessage: FC
= memo(({ message, messageIndex, onEdit }) =
return (
-
+
{message.role === 'assistant' ? (
@@ -185,64 +185,32 @@ export const ChatMessage: FC
= memo(({ message, messageIndex, onEdit }) =
) : (
-
+
{message.content}
)}
- {(window.innerWidth < 640 || !isEditing) && (
- <>
+ {!isEditing && (
+
- >
+
)}
) : (
- <>
-
- {messagedCopied ? (
-
- ) : (
-
- )}
-
-
+
= memo(({ message, messageIndex, onEdit }) =
>
{message.content}
- >
+
+
+ {messagedCopied ? (
+
+ ) : (
+
+ )}
+
+
)}