web-manager 3.1.49 → 3.1.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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