Skip to content

Commit af85544

Browse files
committed
Formatting
1 parent 70e9913 commit af85544

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

packages-exp/auth-exp/src/core/errors.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -435,12 +435,12 @@ export const _DEFAULT_AUTH_ERROR_FACTORY = new ErrorFactory<
435435
/**
436436
* A map of potential Auth error codes, for easier comparison with errors
437437
* thrown by the SDK.
438-
*
438+
*
439439
* @remarks
440440
* Please note that you can't tree-shake individual keys
441441
* in the map, so by using the map you might substantially increase your
442442
* bundle size.
443-
*
443+
*
444444
* @public
445445
*/
446446
export const AUTH_ERROR_CODES_MAP_DO_NOT_USE_INTERNALLY = {
@@ -539,4 +539,4 @@ export const AUTH_ERROR_CODES_MAP_DO_NOT_USE_INTERNALLY = {
539539
WEAK_PASSWORD: 'auth/weak-password',
540540
WEB_STORAGE_UNSUPPORTED: 'auth/web-storage-unsupported',
541541
ALREADY_INITIALIZED: 'auth/already-initialized'
542-
};
542+
};

packages-exp/auth-exp/src/core/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ import {
2626
Unsubscribe
2727
} from '../model/public_types';
2828

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';
3034

3135
// Non-optional auth methods.
3236
/**

0 commit comments

Comments
 (0)