Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add missing semi-colons
  • Loading branch information
cmanallen authored and billyvg committed Nov 20, 2024
commit 3dcf07ecace2eb4cfc32f7a24cf5ba499fec44b2
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ window.initialize = () => {
return {
getBooleanValue(flag, value) {
let hook = new Sentry.OpenFeatureIntegrationHook();
hook.after(null, { flagKey: flag, value: value })
hook.after(null, { flagKey: flag, value: value });
return value;
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type { Client, Event, EventHint, IntegrationFn } from '@sentry/types';
import type { EvaluationDetails, FlagValue, HookContext, HookHints, JsonValue, OpenFeatureHook } from './types';

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

export const openFeatureIntegration = defineIntegration(() => {
return {
Expand Down