From 7777cbf6da51367f0bf8485a954a377dd637dada Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 15 Mar 2017 14:21:34 +0000 Subject: [PATCH] Lint --- src/interactive-auth.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/interactive-auth.js b/src/interactive-auth.js index a0d44691a..058d82796 100644 --- a/src/interactive-auth.js +++ b/src/interactive-auth.js @@ -339,7 +339,9 @@ InteractiveAuth.prototype = { // in general this is not really going to be an accurate error message. // Ideally this would signal what inputs could be removed such that a matching // flow could be found. - throw new Error("This server does not support registration with a phone number"); + throw new Error( + "This server does not support registration with a phone number", + ); } console.log("Active flow => %s", JSON.stringify(flow)); const nextStage = this._firstUncompletedStage(flow);