Skip to content

Commit 3dcf07e

Browse files
cmanallenbillyvg
authored andcommitted
Add missing semi-colons
1 parent c9d3a74 commit 3dcf07e

File tree

2 files changed

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

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ 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;
1818
},
1919
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type { Client, Event, EventHint, IntegrationFn } from '@sentry/types';
99
import type { EvaluationDetails, FlagValue, HookContext, HookHints, JsonValue, OpenFeatureHook } from './types';
1010

1111
import { defineIntegration, getCurrentScope } from '@sentry/core';
12-
import { insertToFlagBuffer } from '../../../utils/featureFlags'
12+
import { insertToFlagBuffer } from '../../../utils/featureFlags';
1313

1414
export const openFeatureIntegration = defineIntegration(() => {
1515
return {

0 commit comments

Comments
 (0)