From 99b04a6f703cf547d0c40b6369f11cafd9d17c3c Mon Sep 17 00:00:00 2001 From: Zoe Date: Thu, 30 Jan 2020 15:41:26 +0000 Subject: [PATCH] lint --- src/components/views/toasts/VerificationRequestToast.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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}