Skip to content

Commit 739110c

Browse files
committed
docs: fix import name
1 parent 2bca611 commit 739110c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/guide/app-check.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Start by adding the `VueFireAppCheck` module to the `VueFire` plugin:
88

99
```ts
10-
import { VueFire, VueFireAuth } from 'vuefire'
10+
import { VueFire, VueFireAppCheck } from 'vuefire'
1111
app.use(VueFire, {
1212
firebaseApp: createFirebaseApp(),
1313
modules: [
@@ -22,7 +22,7 @@ app.use(VueFire, {
2222
In order to use App Check you need to enable it in the Firebase Console > App Check. You also need to setup [a reCAPTCHA provider](https://firebase.google.com/docs/app-check#web), then provide it in the `VueFireAppCheck` module:
2323

2424
```ts{2,9}
25-
import { VueFire, VueFireAuth } from 'vuefire'
25+
import { VueFire, VueFireAppCheck } from 'vuefire'
2626
import { ReCaptchaV3Provider } from 'firebase/app-check'
2727
2828
app.use(VueFire, {
@@ -40,7 +40,7 @@ app.use(VueFire, {
4040
During development, it might be convenient to use a debug token by setting `debug` to `true`. You can then add it to your debug tokens in the Firebase Console > App Check > Apps > Manage Debug Tokens.
4141

4242
```ts{10-11}
43-
import { VueFire, VueFireAuth } from 'vuefire'
43+
import { VueFire, VueFireAppCheck } from 'vuefire'
4444
import { ReCaptchaV3Provider } from 'firebase/app-check'
4545
4646
app.use(VueFire, {

0 commit comments

Comments
 (0)