Skip to content

Commit 76a8147

Browse files
committed
chore: fix stupid bug, you dummy
1 parent 3b09dcd commit 76a8147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@lwc/engine-core/src/framework/hydration-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export type Classes = Omit<Set<string>, 'add'>;
3232
* one is provided. If not provided, error reporting is a no-op.
3333
*/
3434
/* eslint-disable-next-line no-console */
35-
const hydrationLogger = process.env.NODE_ENV !== 'production' ? reportHydrationError : console.warn;
35+
const hydrationLogger = process.env.NODE_ENV === 'production' ? reportHydrationError : console.warn;
3636

3737
/*
3838
Prints attributes as null or "value"

0 commit comments

Comments
 (0)