Skip to content

Commit

Permalink
chore: ignore lint errs
Browse files Browse the repository at this point in the history
  • Loading branch information
nasustim committed Oct 15, 2023
1 parent db27a07 commit c39d37a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/works/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ type Props = {
slug: string
}

// eslint-disable-next-line @typescript-eslint/no-unused-vars
const Page = ({ params }: { params: Props }) => {
return (
<Layout>
Expand Down
1 change: 1 addition & 0 deletions src/components/atoms/ProfileImage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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> = (props) => <img {...props} className={styles.container} />

export default ProfileImage

0 comments on commit c39d37a

Please sign in to comment.