diff --git a/ts/components/calling/CallButtons.tsx b/ts/components/calling/CallButtons.tsx index 6817e307f..32eedce9e 100644 --- a/ts/components/calling/CallButtons.tsx +++ b/ts/components/calling/CallButtons.tsx @@ -328,7 +328,7 @@ const handleSpeakerToggle = async ( isAudioOutputMuted: boolean ) => { if (!currentConnectedAudioOutputs.length) { - ToastUtils.pushNoAudioInputFound(); + ToastUtils.pushNoAudioOutputFound(); return; } diff --git a/ts/session/utils/Toast.tsx b/ts/session/utils/Toast.tsx index 4170dc64d..0de25cbaa 100644 --- a/ts/session/utils/Toast.tsx +++ b/ts/session/utils/Toast.tsx @@ -267,7 +267,7 @@ export function pushNoAudioInputFound() { } export function pushNoAudioOutputFound() { - pushToastWarning('noAudioInputFound', window.i18n('noAudioOutputFound')); + pushToastWarning('noAudioOutputFound', window.i18n('noAudioOutputFound')); } export function pushNoMediaUntilApproved() {