diff --git a/src/app/features/call/CallControls.tsx b/src/app/features/call/CallControls.tsx index 7164ea7b6..d8f4970e4 100644 --- a/src/app/features/call/CallControls.tsx +++ b/src/app/features/call/CallControls.tsx @@ -87,7 +87,6 @@ export function CallControls({ callEmbed }: CallControlsProps) { const [pttMode] = useSetting(settingsAtom, 'pttMode'); const [pttKey] = useSetting(settingsAtom, 'pttKey'); const [deafenKey] = useSetting(settingsAtom, 'deafenKey'); - const [lotusTerminal] = useSetting(settingsAtom, 'lotusTerminal'); const [pttActive, setPttActive] = useState(false); // Track microphone via ref so the PTT effect doesn't need it as a dep (avoids listener churn) @@ -244,68 +243,26 @@ export function CallControls({ callEmbed }: CallControlsProps) { justifyContent="Center" alignItems="Center" > - {pttMode && - (lotusTerminal ? ( - - - {pttActive ? ( - <> - - ● - - {' LIVE'} - - ) : ( - `PTT — Hold ${pttKeyLabel}` - )} - - - ) : ( - - - {pttActive ? '● Live' : `PTT — Hold ${pttKeyLabel}`} - - - ))} + {pttMode && ( + + + {pttActive ? '● Live' : `PTT — Hold ${pttKeyLabel}`} + + + )} {shareConfirm && ( <>
void; }) { return ( - + {SEASONAL_OPTIONS.map((opt) => { const selected = value === opt.value; const isSpecial = opt.value === 'auto' || opt.value === 'off'; @@ -1727,7 +1733,13 @@ function ChatBgGrid() { const isDark = theme.kind === ThemeKind.Dark; return ( - + {BG_OPTIONS.map((opt) => (