Skip to content

Commit 056fdf9

Browse files
committed
style: missing brackets
1 parent ecc678c commit 056fdf9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/utils/install.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ function installModule(Module: any) {
6161
}
6262

6363
function verifyInstallation() {
64-
if (global.createOscillator == null)
64+
if (global.createOscillator == null) {
6565
throw new Error(
6666
'Failed to install react-native-audio-context, the native initializer private does not exist. Are you trying to use Audio Context from different JS Runtimes?'
6767
);
68+
}
6869
}

0 commit comments

Comments
 (0)