diff --git a/src/interface/web/app/components/chatInputArea/chatInputArea.tsx b/src/interface/web/app/components/chatInputArea/chatInputArea.tsx
index fde23a0d..35e34f99 100644
--- a/src/interface/web/app/components/chatInputArea/chatInputArea.tsx
+++ b/src/interface/web/app/components/chatInputArea/chatInputArea.tsx
@@ -420,32 +420,11 @@ export default function ChatInputArea(props: ChatInputProps) {
)}
- {imageUploaded && (
-
- {imagePaths.map((path, index) => (
-
-

-
-
- ))}
-
- )}
-
-
+
+
+
+ {imageUploaded &&
+ imagePaths.map((path, index) => (
+
+

+
+
+ ))}
+
- {recording ? (
-
-
-
-
-
-
- Click to stop recording and transcribe your voice.
-
-
-
- ) : mediaRecorder ? (
-
- ) : (
-
-
-
-
-
-
- Click to transcribe your message with voice.
-
-
-
- )}
-
+
+ {recording ? (
+
+
+
+
+
+
+ Click to stop recording and transcribe your voice.
+
+
+
+ ) : mediaRecorder ? (
+
+ ) : (
+
+
+
+
+
+
+ Click to transcribe your message with voice.
+
+
+
+ )}
+
+
>
);