Skip to content

Commit

Permalink
chore(deps): bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCatLady committed Oct 17, 2023
1 parent 98d00e2 commit ee6612f
Show file tree
Hide file tree
Showing 4 changed files with 148 additions and 133 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
"zod-form-data": "2.0.2"
},
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@commitlint/cli": "17.8.0",
"@commitlint/config-conventional": "17.8.0",
"@svgr/webpack": "8.1.0",
"@tailwindcss/forms": "0.5.6",
"@types/gtag.js": "0.0.16",
"@types/react": "18.2.28",
"@types/react-google-recaptcha": "2.1.6",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"autoprefixer": "10.4.16",
"encoding": "0.1.13",
"eslint": "8.51.0",
Expand All @@ -54,11 +54,11 @@
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unused-imports": "3.0.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"lint-staged": "15.0.1",
"next-sitemap": "4.2.3",
"postcss": "8.4.31",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.5",
"prettier-plugin-tailwindcss": "0.5.6",
"svgo": "3.0.2",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
Expand Down
2 changes: 1 addition & 1 deletion src/components/blog/BlogPostList/BlogPostListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function BlogPostListItem({ post }: { post: HashnodePost }) {
alt=""
className="absolute inset-0 h-full w-full overflow-hidden rounded-2xl bg-gray-50"
classNames={{ image: 'object-cover' }}
layout="fill"
fill
/>
) : (
<div className="absolute inset-0 h-full w-full rounded-2xl bg-gray-50 object-cover" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/NextImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type NextImageProps = {
title?: string;
} & (
| { width: string | number; height: string | number }
| { layout: 'fill'; width?: string | number; height?: string | number }
| { fill: true; width?: string | number; height?: string | number }
) &
ImageProps;

Expand Down
Loading

0 comments on commit ee6612f

Please sign in to comment.