diff --git a/src/CallHandler.tsx b/src/CallHandler.tsx
index b5f696008d..2c30c51041 100644
--- a/src/CallHandler.tsx
+++ b/src/CallHandler.tsx
@@ -393,14 +393,14 @@ export default class CallHandler {
title = _t("Unable to access microphone");
description =
{_t(
- "Call failed because no microphone could not be accessed. " +
+ "Call failed because microphone could not be accessed. " +
"Check that a microphone is plugged in and set up correctly.",
)}
;
} else if (call.type === CallType.Video) {
title = _t("Unable to access webcam / microphone");
description =
- {_t("Call failed because no webcam or microphone could not be accessed. Check that:")}
+ {_t("Call failed because webcam or microphone could not be accessed. Check that:")}
- {_t("A microphone and webcam are plugged in and set up correctly")}
- {_t("Permission is granted to use the webcam")}
diff --git a/src/components/views/dialogs/ServerPickerDialog.tsx b/src/components/views/dialogs/ServerPickerDialog.tsx
index 9eb819c98e..f528872587 100644
--- a/src/components/views/dialogs/ServerPickerDialog.tsx
+++ b/src/components/views/dialogs/ServerPickerDialog.tsx
@@ -153,7 +153,7 @@ export default class ServerPickerDialog extends React.PureComponent