web-manager 3.1.49 → 3.1.50
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/account.js +1 -3
- package/package.json +1 -1
package/lib/account.js
CHANGED
@@ -408,9 +408,7 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
|
|
408
408
|
referralURL.searchParams.set('aff', account.affiliate.code)
|
409
409
|
|
410
410
|
authCreatedEl.setInnerHTML(
|
411
|
-
new Date(
|
412
|
-
parseInt(self.utilities.get(firebaseUser, 'metadata.a', '0'))
|
413
|
-
)
|
411
|
+
new Date(+self.utilities.get(firebaseUser, 'metadata.createdAt', '0'))
|
414
412
|
.toLocaleString(undefined, {
|
415
413
|
weekday: 'long', year: 'numeric', month: 'long', day: 'numeric',
|
416
414
|
})
|
package/package.json
CHANGED