diff --git a/src/app/works/[slug]/page.tsx b/src/app/works/[slug]/page.tsx index 82d19d18..d2623755 100644 --- a/src/app/works/[slug]/page.tsx +++ b/src/app/works/[slug]/page.tsx @@ -8,6 +8,7 @@ type Props = { slug: string } +// eslint-disable-next-line @typescript-eslint/no-unused-vars const Page = ({ params }: { params: Props }) => { return ( diff --git a/src/components/atoms/ProfileImage/index.tsx b/src/components/atoms/ProfileImage/index.tsx index a8ad58a0..a0d268f1 100644 --- a/src/components/atoms/ProfileImage/index.tsx +++ b/src/components/atoms/ProfileImage/index.tsx @@ -3,6 +3,7 @@ import styles from './index.module.scss' type Props = JSX.IntrinsicElements['img'] +// eslint-disable-next-line jsx-a11y/alt-text, @next/next/no-img-element const ProfileImage: FC = (props) => export default ProfileImage