Remove misplaced bracket in a translation string

This commit is contained in:
Libexus 2021-07-21 09:44:39 +02:00
parent ae60692e88
commit 4c7c10abf8
2 changed files with 2 additions and 2 deletions

View file

@ -138,7 +138,7 @@ export default class CallEvent extends React.Component<IProps, IState> {
} else if (hangupReason === CallErrorCode.UserBusy) {
reason = _t("The user you called is busy.");
} else {
reason = _t('Unknown failure: %(reason)s)', { reason: hangupReason });
reason = _t('Unknown failure: %(reason)s', { reason: hangupReason });
}
return (