@samitouri / QOS-React / commits / ee76351917

fix typo in compiler validation filename (#33345)

## Summary While investigating the root cause of #33208, I noticed a clear typo for one of the validation files. ## How did you test this change? Inside `/react/compiler/packages/babel-plugin-react-compiler` I ran the test script successfully: <img width="415" alt="Screenshot at May 22 16-43-06" src="https://github.com/user-attachments/assets/3fe8c5e1-37ce-4a31-b35e-7e323e57cd9d" />

Wesley LeMahieu committed May 30, 2025 at 16:31 UTC ee76351917106c6146745432a52e9a54a41ee181
2 files changed +1 -1
compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccessInRender.ts renamed
compiler/packages/babel-plugin-react-compiler/src/Validation/index.ts
+1 -1
@@ -9,7 +9,7 @@ export {validateContextVariableLValues} from './ValidateContextVariableLValues';
9 export {validateHooksUsage} from './ValidateHooksUsage';
10 export {validateMemoizedEffectDependencies} from './ValidateMemoizedEffectDependencies';
11 export {validateNoCapitalizedCalls} from './ValidateNoCapitalizedCalls';
12 -export {validateNoRefAccessInRender} from './ValidateNoRefAccesInRender';
12 +export {validateNoRefAccessInRender} from './ValidateNoRefAccessInRender';
13 export {validateNoSetStateInRender} from './ValidateNoSetStateInRender';
14 export {validatePreservedManualMemoization} from './ValidatePreservedManualMemoization';
15 export {validateUseMemo} from './ValidateUseMemo';