diff --git a/src/apps/call/CallWizard.tsx b/src/apps/call/CallWizard.tsx index 7736f06c5..6081f936c 100644 --- a/src/apps/call/CallWizard.tsx +++ b/src/apps/call/CallWizard.tsx @@ -152,9 +152,10 @@ export function CallWizard(props: { strict?: boolean, conversationId: string, ch } text={ - (overriddenRecognition ? 'Speech recognition should be good to go.' : 'There might be a speech recognition issue.') + ((overriddenRecognition && !recognition.warnings.length) ? 'Speech recognition should be good to go.' : 'There might be a speech recognition issue.') + (recognition.isApiAvailable ? '' : ' Your browser does not support the speech recognition API.') - + (recognition.isDeviceNotSupported ? ' Your device does not provide this feature (IPhone?).' : '') + + (recognition.isDeviceNotSupported ? ' Your device does not provide this feature.' : '') + + (recognition.warnings.length ? ' ⚠️ ' + recognition.warnings.join(' · ') : '') } button={overriddenRecognition ? undefined : (