[auth][js] fixed incorrect timeout value - should be seconds not ms
This commit is contained in:
parent
1fd372cf9a
commit
6a78cac3be
|
@ -41,7 +41,7 @@ export default class PhoneAuthListener {
|
|||
this._promise = null;
|
||||
this._credential = null;
|
||||
|
||||
this._timeout = timeout || 20000; // 20 secs
|
||||
this._timeout = timeout || 20; // 20 secs
|
||||
this._phoneAuthRequestKey = generatePushID();
|
||||
|
||||
// internal events
|
||||
|
|
Loading…
Reference in New Issue