Skip to content

Commit c9d3a74

Browse files
cmanallenbillyvg
authored andcommitted
Linting
1 parent 22e7e16 commit c9d3a74

File tree

2 files changed

+4
-4
lines changed
  • dev-packages/browser-integration-tests/suites/integrations/featureFlags/openfeature
  • packages/browser/src/integrations/featureFlags/openfeature

2 files changed

+4
-4
lines changed

dev-packages/browser-integration-tests/suites/integrations/featureFlags/openfeature/init.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ window.initialize = () => {
1313
return {
1414
getBooleanValue(flag, value) {
1515
let hook = new Sentry.OpenFeatureIntegrationHook();
16-
hook.after(null, {flagKey: flag, value: value})
16+
hook.after(null, { flagKey: flag, value: value })
1717
return value;
18-
}
19-
}
18+
},
19+
};
2020
};

packages/browser/src/integrations/featureFlags/openfeature/integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* - OpenFeature.getClient().addHooks(new OpenFeatureIntegrationHook());
77
*/
88
import type { Client, Event, EventHint, IntegrationFn } from '@sentry/types';
9-
import type { OpenFeatureHook, FlagValue, JsonValue, HookContext, EvaluationDetails, HookHints } from './types';
9+
import type { EvaluationDetails, FlagValue, HookContext, HookHints, JsonValue, OpenFeatureHook } from './types';
1010

1111
import { defineIntegration, getCurrentScope } from '@sentry/core';
1212
import { insertToFlagBuffer } from '../../../utils/featureFlags'

0 commit comments

Comments
 (0)