Hi!
We're now using the 'width' piece of state inside of the 'useEffect' hook. React is going to give you a warning about this, saying that you should add 'width' to the dependency array.
To fix the warning, update the dependency array of the useEffect hook to the following:
[width]