diff --git a/src/components/views/toasts/VerificationRequestToast.js b/src/components/views/toasts/VerificationRequestToast.js index 4f2c85acf6..61d26c60cc 100644 --- a/src/components/views/toasts/VerificationRequestToast.js +++ b/src/components/views/toasts/VerificationRequestToast.js @@ -127,7 +127,9 @@ export default class VerificationRequestToast extends React.PureComponent { nameLabel = _t("%(name)s (%(userId)s)", {name: user.displayName, userId}); } } - const declineLabel = this.state.counter == 0 ? _t("Decline") : _t("Decline (%(counter)s)", {counter: this.state.counter}); + const declineLabel = this.state.counter == 0 ? + _t("Decline") : + _t("Decline (%(counter)s)", {counter: this.state.counter}); return (
{nameLabel}