We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d1a74e commit dd45d3bCopy full SHA for dd45d3b
packages/core/src/sdk.ts
@@ -21,14 +21,14 @@ export function initAndBind<F extends Client, O extends Options>(
21
options: O,
22
defaultIntegrations: Integration[] = [],
23
): void {
24
- if (getCurrentHub().getClient()) {
25
- return;
26
- }
27
-
28
if (options.debug) {
29
logger.enable();
30
}
31
+ if (getCurrentHub().getClient()) {
+ return;
+ }
+
32
const client = new clientClass(options);
33
client.install();
34
0 commit comments