Skip to content

Commit 4372234

Browse files
committed
style: lint
1 parent f16a81c commit 4372234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/nuxt/src/module.ts

+2-2
Original file line numberDiff line numberDiff 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
},

0 commit comments

Comments
 (0)