From 495513028c15dc0538caf504a74b6d649daf6d67 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 7 Oct 2019 12:46:14 +0100 Subject: [PATCH] Appease the linter --- src/components/views/auth/InteractiveAuthEntryComponents.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/views/auth/InteractiveAuthEntryComponents.js b/src/components/views/auth/InteractiveAuthEntryComponents.js index 4541ce15f7..359dcd1398 100644 --- a/src/components/views/auth/InteractiveAuthEntryComponents.js +++ b/src/components/views/auth/InteractiveAuthEntryComponents.js @@ -195,7 +195,10 @@ export const RecaptchaAuthEntry = createReactClass({ const CaptchaForm = sdk.getComponent("views.auth.CaptchaForm"); let sitePublicKey; if (!this.props.stageParams || !this.props.stageParams.public_key) { - errorText = _t("Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator."); + errorText = _t( + "Missing captcha public key in homeserver configuration. Please report " + + "this to your homeserver administrator.", + ); } else { sitePublicKey = this.props.stageParams.public_key; }