@samitouri / QOS-React-2 / commits / 0beeb1e7ad

Remove unncessary nullcheck

Sathya Gunasekaran committed Nov 8, 2023 at 16:09 UTC 0beeb1e7ad283a718fbf7a8ff67d8dff3be90dfd
1 file changed +1 -1
compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts
+1 -1
@@ -334,7 +334,7 @@ export class Environment {
334 returnValueKind: hook.valueKind,
335 calleeEffect: Effect.Read,
336 hookKind: "Custom",
337 - noAlias: hook.noAlias ?? false,
337 + noAlias: hook.noAlias,
338 })
339 );
340 }