You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning: findDOMNode is deprecated in StrictMode. findDOMNode was passed an instance of InputMaskChildrenWrapper which is inside StrictMode. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node
was able to resolve this warning by removing <React.StrictMode> from my index.tsx. However, I'm looking for suggestions or a fix that would allow me to keep using <React.StrictMode> without encountering this warning.
Does anyone have any suggestions or a solution to address this issue while still using React Strict Mode?
In my console, I received the following warning:
Warning: findDOMNode is deprecated in StrictMode. findDOMNode was passed an instance of InputMaskChildrenWrapper which is inside StrictMode. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node
was able to resolve this warning by removing <React.StrictMode> from my index.tsx. However, I'm looking for suggestions or a fix that would allow me to keep using <React.StrictMode> without encountering this warning.
Does anyone have any suggestions or a solution to address this issue while still using React Strict Mode?
My component:
My input:
My packages:
react: ^18.2.0
react-dom: ^18.2.0
react-hook-form: ^7.47.0
react-input-mask: ^3.0.0-alpha.2
@types/react-input-mask: ^3.0.3
The text was updated successfully, but these errors were encountered: