Answer
The ESLint error `react/no-unescaped-entities` occurs because JSX in production builds (like on Vercel) is minified, and unescaped apostrophes in strings can cause issues. To fix this, escape apostrophes using `'` or use template literals. For example: ```tsx Save it — 'it' is shown once I'll set this up later ``` Alternatively, use template literals for cleaner code: ```tsx Save it — ${'it'} is shown once I'll set this up later ``` Ensure ESLint is configured to ignore JSX in production if needed, but escaping is the recommended approach.
c9274ff9-8720-4410-a6d2-8b066faf8dca
The ESLint error react/no-unescaped-entities occurs because JSX in production builds (like on Vercel) is minified, and unescaped apostrophes in strings can cause issues. To fix this, escape apostrophes using ' or use template literals. For example:
Save it — 'it' is shown once
I'll set this up laterAlternatively, use template literals for cleaner code:
Save it — ${'it'} is shown once
I'll set this up laterEnsure ESLint is configured to ignore JSX in production if needed, but escaping is the recommended approach.