From 3f1c8c45718b33406f055cb413f831f15853b312 Mon Sep 17 00:00:00 2001 From: Chris Bianca Date: Fri, 26 Jan 2018 10:11:43 +0000 Subject: [PATCH] [typings] Fix flow issue --- lib/modules/auth/PhoneAuthListener.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/auth/PhoneAuthListener.js b/lib/modules/auth/PhoneAuthListener.js index 838dc86e..24033318 100644 --- a/lib/modules/auth/PhoneAuthListener.js +++ b/lib/modules/auth/PhoneAuthListener.js @@ -107,9 +107,9 @@ export default class PhoneAuthListener { for (let i = 0, len = events.length; i < len; i++) { const type = events[i]; - // $FlowBug: Flow doesn't support indexable signatures on classes: https://github.com/facebook/flow/issues/1323 SharedEventEmitter.once( this._internalEvents[type], + // $FlowBug: Flow doesn't support indexable signatures on classes: https://github.com/facebook/flow/issues/1323 this[`_${type}Handler`].bind(this) ); }