### Summary: Current react modal doesn't work with latest version of React + Node v18 ### Steps to reproduce: 1. Use react-modal with latest React's and Node v18 ### Expected behavior: Should work normally ### Example of issue: Breaks with the following error message: <img width="1020" alt="Screenshot 2023-05-08 at 15 42 54" src="https://user-images.githubusercontent.com/8544110/236747791-3379214d-5b12-4b75-bc65-9c4dd795c495.png"> ### Solution: Simply add `startTransition()` wrapping each of the calls for setting the state. ```startTransition(() => setState("something))```