Skip to content

Commit ac64e3d

Browse files
committed
docs: audit all links, fix all broken links
1 parent f6dd69c commit ac64e3d

30 files changed

Lines changed: 59 additions & 59 deletions

docs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@
4646
{ "title": "Migration Guide to v25", "href": "/migrating-to-v25" },
4747
{ "title": "TypeScript", "href": "/typescript" },
4848
{ "title": "Platforms", "href": "/platforms" },
49+
{ "title": "FAQs and Tips", "href": "/faqs-and-tips" },
4950
{
5051
"title": "Release Notes",
5152
"href": "https://github.com/invertase/react-native-firebase/blob/main/CHANGELOG.md"
5253
},
53-
{ "title": "FAQs and Tips", "href": "/faqs-and-tips" },
5454
{ "title": "Feature Requests", "href": "https://invertase.canny.io/react-native-firebase" },
5555
{
5656
"title": "Contributing",

docs/about.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ library is hard, yet rewarding work.
3232

3333
With the support from the community and Google, we're pleased to announce that starting in 2019, our very own
3434
Mike Diarmid will be working full time on the library. With the lessons we've learnt, we'll be focusing on taking the
35-
library to a new level. Read about it [here](https://invertase.io/blog/react-native-firebase-2019).
35+
library to a new level. Read about it [here](https://medium.com/invertase/react-native-firebase-2019-7e334ca9bcc6).
3636

3737
The success and upkeep of the library would not be possible without the support and contributions from the community.
3838
To date, we've had contributions from 114 members of the Open Source community on the repository to who we're very

docs/ai/usage/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: AI Logic
33
description: Installation and getting started with Firebase AI Logic.
44
icon: //firebase.google.com/static/images/icons/firebase-ai-logic.svg
55
next: /analytics/usage
6-
previous: /contributing
6+
previous: /faqs-and-tips
77
---
88

99
# Installation
836 KB
Loading
561 KB
Loading
1.12 MB
Loading

docs/auth/phone-auth.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ Ensure that all parts of step 1 and 2 from [the official firebase iOS phone auth
2323

2424
Phone auth requires app verification, and the automatic app verification process uses data-only firebase cloud messages to the app. Data-only cloud messaging only works on real devices where the app has background refresh enabled. If background refresh disabled, or if using the Simulator, app verification uses the fallback reCAPTCHA flow allowing you to check if it is configured correctly.
2525

26-
For reliable automated testing, you may want to disable both automatic and fallback reCAPTCHA app verification for your app. To do this, [you may disable app verification in AuthSettings](https://rnfirebase.io/reference/auth/authsettings#appVerificationDisabledForTesting) prior to calling any phone auth methods.
26+
For reliable automated testing, you may want to disable both automatic and fallback reCAPTCHA app verification for your app. To do this, [you may disable app verification in AuthSettings](https://reference.rnfirebase.io/_react-native-firebase/auth/FirebaseAuthTypes/AuthSettings.html#appVerificationDisabledForTesting) prior to calling any phone auth methods.
2727

2828
# Android Setup
2929

3030
Ensure that all parts of step 1 and 2 from [the official firebase Android phone auth docs](https://firebase.google.com/docs/auth/android/phone-auth#enable-phone-number-sign-in-for-your-firebase-project) have been followed.
3131

32-
To bypass Play Integrity for manual testing, you may [force reCAPTCHA to be used](https://rnfirebase.io/reference/auth/authsettings#appVerificationDisabledForTesting) prior to calling [`verifyPhoneNumber`](https://rnfirebase.io/reference/auth#verifyPhoneNumber).
32+
To bypass Play Integrity for manual testing, you may [force reCAPTCHA to be used](https://reference.rnfirebase.io/_react-native-firebase/auth/FirebaseAuthTypes/AuthSettings.html#appVerificationDisabledForTesting) prior to calling [`verifyPhoneNumber`](https://reference.rnfirebase.io/_react-native-firebase/auth/verifyPhoneNumber.html).
3333

3434
# Expo Setup
3535

@@ -45,7 +45,7 @@ To use phone auth in an expo app, add the `@react-native-firebase/auth` config p
4545

4646
The `@react-native-firebase/auth` config plugin is not required for all auth providers, but it is required to use phone auth. The plugin [will set up reCAPTCHA](https://firebase.google.com/docs/auth/ios/phone-auth#set-up-recaptcha-verification) verification for you on iOS.
4747

48-
The recommendation is to use a [custom development client](https://docs.expo.dev/clients/getting-started/). For more info on using Expo with React Native Firebase, see our [Expo docs](/#expo).
48+
The recommendation is to use a [custom development client](https://docs.expo.dev/develop/development-builds/introduction/#use-libraries-with-native-code-that-arent). For more info on using Expo with React Native Firebase, see our [Expo docs](/#installation-for-expo-projects).
4949

5050
# Sign-in
5151

docs/auth/usage/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ to the error. For a full list of error codes available, view the [Firebase docum
170170

171171
## Authenticate with backend server
172172

173-
The user's token should be used for authentication with your backend systems. The token is fetched with the [getIdToken](https://rnfirebase.io/reference/auth/user#getIdToken) method. As mentioned in the [Firebase documentation](https://firebase.google.com/docs/auth/web/manage-users#get_a_users_profile), the uid should not be used for authentication.
173+
The user's token should be used for authentication with your backend systems. The token is fetched with the [getIdToken](https://reference.rnfirebase.io/_react-native-firebase/auth/FirebaseAuthTypes/User.html#getIdToken) method. As mentioned in the [Firebase documentation](https://firebase.google.com/docs/auth/web/manage-users#get_a_users_profile), the uid should not be used for authentication.
174174

175175
## Signing out
176176

docs/crashlytics/usage/installation/android.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected List<ReactPackage> getPackages() {
5050

5151
## 4. Additional Android Setup
5252

53-
Android requires additional steps in order to complete setup. View the [Android Setup](crashlytics/android-setup) documentation
53+
Android requires additional steps in order to complete setup. View the [Android Setup](/crashlytics/android-setup) documentation
5454
for more information.
5555

5656
## 5. Rebuild the project

docs/database/presence-detection.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Presence Detection
33
description: Show a realtime list of online users with Realtime Database.
4-
next: /firestore/usage
4+
next: /in-app-messaging/usage
55
previous: /database/offline-support
66
---
77

0 commit comments

Comments
 (0)