Skip to content

Commit

Permalink
chore: react/no-unknown-propertyエラーを解消する
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyme committed Sep 16, 2024
1 parent f56926c commit dc9eaa6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/layouts/AppHead.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ import { headLinks } from '@/constants/headLinks';

export default function AppHead() {
return (
<head prefix='og: https://ogp.me/ns#'>
<head
// eslint-disable-next-line react/no-unknown-property
prefix='og: https://ogp.me/ns#'
>
{headLinks.map((props) => (
<link
key={JSON.stringify(props)}
Expand Down

0 comments on commit dc9eaa6

Please sign in to comment.