@meistrari/auth-nuxt 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -3
- package/dist/module.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,8 +92,6 @@ await signOut(() => {
|
|
|
92
92
|
await signInWithEmailAndPassword({
|
|
93
93
|
email: 'user@example.com',
|
|
94
94
|
password: 'secure-password',
|
|
95
|
-
callbackURL: '/dashboard',
|
|
96
|
-
errorCallbackURL: '/login?error=true'
|
|
97
95
|
})
|
|
98
96
|
```
|
|
99
97
|
|
|
@@ -396,7 +394,6 @@ try {
|
|
|
396
394
|
await signInWithEmailAndPassword({
|
|
397
395
|
email: 'user@example.com',
|
|
398
396
|
password: 'wrong-password',
|
|
399
|
-
callbackURL: '/dashboard'
|
|
400
397
|
})
|
|
401
398
|
}
|
|
402
399
|
catch (error) {
|
package/dist/module.json
CHANGED