File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
packages/browser/src/integrations/featureFlags/unleash Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ export const unleashIntegration = defineIntegration((unleashClientClass: Unleash
5151 return result ;
5252 } ,
5353 } ;
54+ // eslint-disable-next-line @typescript-eslint/unbound-method
5455 const originalIsEnabled = unleashClientPrototype . isEnabled ;
5556 unleashClientPrototype . isEnabled = new Proxy ( originalIsEnabled , sentryIsEnabled ) ;
5657
@@ -66,6 +67,7 @@ export const unleashIntegration = defineIntegration((unleashClientClass: Unleash
6667 return variant ;
6768 } ,
6869 } ;
70+ // eslint-disable-next-line @typescript-eslint/unbound-method
6971 const originalGetVariant = unleashClientPrototype . getVariant ;
7072 unleashClientPrototype . getVariant = new Proxy ( originalGetVariant , sentryGetVariant ) ;
7173 } ,
You can’t perform that action at this time.
0 commit comments