File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export default defineNuxtModule<VueFireNuxtModuleOptions>({
54
54
// resolve options
55
55
const isAuthEnabled =
56
56
typeof _options . auth === 'object'
57
- ? _options . auth . enabled ?? true // allows user to comment out enabled: false
57
+ ? ( _options . auth . enabled ?? true ) // allows user to comment out enabled: false
58
58
: ! ! _options . auth
59
59
60
60
const options = {
@@ -65,7 +65,7 @@ export default defineNuxtModule<VueFireNuxtModuleOptions>({
65
65
emulators : {
66
66
enabled :
67
67
typeof _options . emulators === 'object'
68
- ? _options . emulators . enabled ?? true // allows user to comment out enabled: false
68
+ ? ( _options . emulators . enabled ?? true ) // allows user to comment out enabled: false
69
69
: ! ! _options . emulators ,
70
70
...( typeof _options . emulators === 'object' ? _options . emulators : { } ) ,
71
71
} ,
You can’t perform that action at this time.
0 commit comments