File tree 2 files changed +8
-4
lines changed
packages-exp/auth-exp/src/core 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -435,12 +435,12 @@ export const _DEFAULT_AUTH_ERROR_FACTORY = new ErrorFactory<
435
435
/**
436
436
* A map of potential Auth error codes, for easier comparison with errors
437
437
* thrown by the SDK.
438
- *
438
+ *
439
439
* @remarks
440
440
* Please note that you can't tree-shake individual keys
441
441
* in the map, so by using the map you might substantially increase your
442
442
* bundle size.
443
- *
443
+ *
444
444
* @public
445
445
*/
446
446
export const AUTH_ERROR_CODES_MAP_DO_NOT_USE_INTERNALLY = {
@@ -539,4 +539,4 @@ export const AUTH_ERROR_CODES_MAP_DO_NOT_USE_INTERNALLY = {
539
539
WEAK_PASSWORD : 'auth/weak-password' ,
540
540
WEB_STORAGE_UNSUPPORTED : 'auth/web-storage-unsupported' ,
541
541
ALREADY_INITIALIZED : 'auth/already-initialized'
542
- } ;
542
+ } ;
Original file line number Diff line number Diff line change @@ -26,7 +26,11 @@ import {
26
26
Unsubscribe
27
27
} from '../model/public_types' ;
28
28
29
- export { debugErrorMap , prodErrorMap , AUTH_ERROR_CODES_MAP_DO_NOT_USE_INTERNALLY as AuthErrorCodes } from './errors' ;
29
+ export {
30
+ debugErrorMap ,
31
+ prodErrorMap ,
32
+ AUTH_ERROR_CODES_MAP_DO_NOT_USE_INTERNALLY as AuthErrorCodes
33
+ } from './errors' ;
30
34
31
35
// Non-optional auth methods.
32
36
/**
You can’t perform that action at this time.
0 commit comments