From df518aa7cc5a0ebd92574003dd616b04421dcdc6 Mon Sep 17 00:00:00 2001 From: Roland Tannous Date: Sat, 21 Feb 2026 12:51:38 +0000 Subject: [PATCH] move microphone icon in compare page to be next to send button --- .../src/features/chat/shared-composer.tsx | 48 ++++++++++--------- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/studio/frontend/src/features/chat/shared-composer.tsx b/studio/frontend/src/features/chat/shared-composer.tsx index 855b83ee09..6b3fc29d9e 100644 --- a/studio/frontend/src/features/chat/shared-composer.tsx +++ b/studio/frontend/src/features/chat/shared-composer.tsx @@ -317,6 +317,8 @@ export function SharedComposer({ > + +
{dictationSupported && ( <> {!isDictating ? ( @@ -346,30 +348,30 @@ export function SharedComposer({ )} )} + {running ? ( + + ) : ( + + + + )}
- {running ? ( - - ) : ( - - - - )} );