diff --git a/libs/mobile/chat/features/voice-mode-modal/src/lib/component.tsx b/libs/mobile/chat/features/voice-mode-modal/src/lib/component.tsx
index 517fea6..e0573d1 100644
--- a/libs/mobile/chat/features/voice-mode-modal/src/lib/component.tsx
+++ b/libs/mobile/chat/features/voice-mode-modal/src/lib/component.tsx
@@ -184,31 +184,33 @@ export function VoiceModeModal({ onChatCreated, ref, ...props }: VoiceModeModalP
backdropTransitionOutTiming={1}
animationOutTiming={1}
animationIn='fadeIn'
- style={{ overflow: 'hidden' }}
+ style={{ overflow: 'hidden', margin: 0 }}
{...props}>
-
-
- {isThinking || isAiSpeaking ? : }
-
-
-
-
- {isAiSpeaking
- ? translate('TEXT_TALKING')
- : isThinking
- ? translate('TEXT_THINKING')
- : translate('TEXT_LISTENING')}
-
-
-
-
+
+
+
+ {isThinking || isAiSpeaking ? : }
+
+
+
+
+ {isAiSpeaking
+ ? translate('TEXT_TALKING')
+ : isThinking
+ ? translate('TEXT_THINKING')
+ : translate('TEXT_LISTENING')}
+
+
+
+
+
);