File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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>({
5454 // resolve options
5555 const isAuthEnabled =
5656 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
5858 : ! ! _options . auth
5959
6060 const options = {
@@ -65,7 +65,7 @@ export default defineNuxtModule<VueFireNuxtModuleOptions>({
6565 emulators : {
6666 enabled :
6767 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
6969 : ! ! _options . emulators ,
7070 ...( typeof _options . emulators === 'object' ? _options . emulators : { } ) ,
7171 } ,
You can’t perform that action at this time.
0 commit comments