Skip to content

Commit a9f9cc4

Browse files
authored
docs: link fixes (#80)
1 parent 0204dd4 commit a9f9cc4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/buttons/web.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import Banner from '../_sponsorBanner.mdx';
1313

1414
The button will _not render_ before the [Google Client API has been loaded](../setting-up/web). You can use the `onError` prop to detect this case.
1515

16-
### How to use this
16+
### Usage
1717

1818
As the Universal sign in Guide explains, there are two ways to sign in on the web: using the One-tap UI or using the Google Sign-In button.
1919

docs/security.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const getNonce = async () => {
9090
// Supabase makes a hash of `rawNonce` and compares it with the `nonceDigest`
9191
// which is included in the ID token from RN-google-signin.
9292
const rawNonce = getUrlSafeNonce();
93-
// `nonceDigest` goes to the `nonce` parameter in RN-google-signin APIs
93+
// `nonceDigest` (SHA-256 hash, hex-encoded) goes to the `nonce` parameter in RN-google-signin APIs
9494
const nonceDigest = await digestStringAsync(
9595
CryptoDigestAlgorithm.SHA256,
9696
rawNonce,

docs/setting-up/expo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ After installing the npm package, add a config plugin (read more details below)
2222

2323
If you're _not_ using Firebase, provide the `iosUrlScheme` option to the config plugin.
2424

25-
To obtain `iosUrlScheme`, follow [the guide](./get-config-file#ios).
25+
To obtain `iosUrlScheme`, follow [the guide](./get-config-file?firebase-or-not=cloud-console#ios).
2626

2727
```json title="app.json | js"
2828
{
@@ -41,7 +41,7 @@ To obtain `iosUrlScheme`, follow [the guide](./get-config-file#ios).
4141

4242
### Expo and Firebase Authentication
4343

44-
If you are using Firebase Authentication, obtain the 2 Firebase config files (`google-services.json` for Android and `GoogleService-Info.plist` for iOS) according to the [guide](./get-config-file?firebase-or-not=firebase) and place them into your project. Then specify the paths to the files:
44+
If you are using Firebase Authentication, obtain the 2 Firebase config files (`google-services.json` for Android and `GoogleService-Info.plist` for iOS) according to the [guide](./get-config-file?firebase-or-not=firebase#ios) and place them into your project. Then specify the paths to the files:
4545

4646
```json title="app.json | js"
4747
{

0 commit comments

Comments
 (0)