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 message appears about anonymous arrow function. yup 0.32.5
A codemod is available to fix the most common cases: https://nextjs.link/codemod-ndc
warn - ./node_modules/yup/es/util/isSchema.js
Anonymous arrow functions cause Fast Refresh to not preserve local component state.
Please add a name to your function, for example:
Before
export default () => <div />;
After
const Named = () => <div />;
export default Named;
A codemod is available to fix the most common cases: https://nextjs.link/codemod-ndc
./node_modules/yup/es/util/isAbsent.js
Anonymous arrow functions cause Fast Refresh to not preserve local component state.
Please add a name to your function, for example:
Before
export default () => <div />;
After
const Named = () => <div />;
export default Named;
A codemod is available to fix the most common cases: https://nextjs.link/codemod-ndc
The text was updated successfully, but these errors were encountered:
Describe the bug
Warning message appears about anonymous arrow function. yup 0.32.5
The text was updated successfully, but these errors were encountered: