Skip to content

Commit 2f9b72a

Browse files
committed
removed no-unescaped-entities from eslint
1 parent cbf0055 commit 2f9b72a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.eslintrc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"extends": "next/core-web-vitals"
2+
"extends": "next/core-web-vitals",
3+
"rules": { "react/no-unescaped-entities": 0 }
34
}

components/Hero.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function Hero() {
1818
</p>
1919

2020
<div className='z-10 mr-2'>
21-
<Link href='#contact'>
21+
<Link href='#contact' passHref>
2222
<button type="button" className="h-10 px-6 mt-4 font-semibold rounded-md bg-blue-500 w-32 justify-self-end">
2323
Contact
2424
</button>

0 commit comments

Comments
 (0)