Skip to content

Commit 4722008

Browse files
committed
Undo link in code blocks and error text
1 parent 0faea71 commit 4722008

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ function _debugErrorMap(): ErrorMap<AuthErrorCode> {
165165
[AuthErrorCode.EMAIL_EXISTS]:
166166
'The email address is already in use by another account.',
167167
[AuthErrorCode.EMULATOR_CONFIG_FAILED]:
168-
'{@link Auth} instance has already been used to make a network call. Auth can ' +
168+
'Auth instance has already been used to make a network call. Auth can ' +
169169
'no longer be configured to use the emulator. Try calling ' +
170170
'"connectAuthEmulator()" sooner.',
171171
[AuthErrorCode.EXPIRED_OOB_CODE]: 'The action code has expired.',
@@ -243,7 +243,7 @@ function _debugErrorMap(): ErrorMap<AuthErrorCode> {
243243
[AuthErrorCode.INVALID_SESSION_INFO]:
244244
'The verification ID used to create the phone auth credential is invalid.',
245245
[AuthErrorCode.INVALID_TENANT_ID]:
246-
"The {@link Auth} instance's tenant ID is invalid.",
246+
"The Auth instance's tenant ID is invalid.",
247247
[AuthErrorCode.MISSING_ANDROID_PACKAGE_NAME]:
248248
'An Android Package Name must be provided if the Android App is required to be installed.',
249249
[AuthErrorCode.MISSING_AUTH_DOMAIN]:
@@ -316,7 +316,7 @@ function _debugErrorMap(): ErrorMap<AuthErrorCode> {
316316
[AuthErrorCode.SECOND_FACTOR_LIMIT_EXCEEDED]:
317317
'The maximum allowed number of second factors on a user has been exceeded.',
318318
[AuthErrorCode.TENANT_ID_MISMATCH]:
319-
"The provided tenant ID does not match the {@link Auth} instance's tenant ID",
319+
"The provided tenant ID does not match the Auth instance's tenant ID",
320320
[AuthErrorCode.TIMEOUT]: 'The operation has timed out.',
321321
[AuthErrorCode.TOKEN_EXPIRED]:
322322
"The user's credential is no longer valid. The user must sign in again.",

packages-exp/auth-exp/src/model/public_types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export interface Auth {
261261
*
262262
* @example
263263
* ```javascript
264-
* // Set the tenant ID on {@link Auth} instance.
264+
* // Set the tenant ID on Auth instance.
265265
* auth.tenantId = 'TENANT_PROJECT_ID';
266266
*
267267
* // All future sign-in request now include tenant ID.
@@ -977,7 +977,7 @@ export interface User extends UserInfo {
977977
*
978978
* @example
979979
* ```javascript
980-
* // Set the tenant ID on {@link Auth} instance.
980+
* // Set the tenant ID on Auth instance.
981981
* auth.tenantId = 'TENANT_PROJECT_ID';
982982
*
983983
* // All future sign-in request now include tenant ID.

0 commit comments

Comments
 (0)