diff --git a/src/core/performance/measure/index.ts b/src/core/performance/measure/index.ts index fa4f01f0e..d4bf0353e 100644 --- a/src/core/performance/measure/index.ts +++ b/src/core/performance/measure/index.ts @@ -31,7 +31,7 @@ export function wrapWithMeasurement CanNull), original: (this: TThis, ...args: TArgs) => TResult ): (this: TThis, ...args: TArgs) => TResult { - if (!IS_PROD) { + if (IS_PROD) { return original; }