File tree Expand file tree Collapse file tree 4 files changed +5
-1
lines changed
Expand file tree Collapse file tree 4 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -238,6 +238,7 @@ export default function FileTypeDetail({ slug }: FileTypeDetailProps) {
238238 < CardContent >
239239 { fileType . more_information . screenshot && (
240240 < figure className = "mb-6" >
241+ { /* eslint-disable-next-line @next/next/no-img-element */ }
241242 < img
242243 src = { fileType . more_information . screenshot . url }
243244 alt = { fileType . more_information . screenshot . alt }
Original file line number Diff line number Diff line change @@ -408,6 +408,7 @@ function FileTypeDetail({ slug }: FileTypeDetailProps) {
408408 < div className = "space-y-6" >
409409 { fileType . more_information . screenshot && (
410410 < figure className = "mb-6" >
411+ { /* eslint-disable-next-line @next/next/no-img-element */ }
411412 < img
412413 src = { fileType . more_information . screenshot . url }
413414 srcSet = { fileType . more_information . screenshot . srcset }
@@ -499,6 +500,7 @@ function FileTypeDetail({ slug }: FileTypeDetailProps) {
499500 < div key = { index } className = "flex items-center justify-between p-3 bg-gray-50 dark:bg-gray-700/50 rounded-lg" >
500501 < div className = "flex items-center gap-3" >
501502 { program . icon && (
503+ /* eslint-disable-next-line @next/next/no-img-element */
502504 < img
503505 src = { program . icon }
504506 alt = { program . name }
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ export function BlogSection({ blogPosts }: BlogSectionProps) {
3434 >
3535 { post . image ? (
3636 < div className = "aspect-[16/10] bg-gray-100" >
37+ { /* eslint-disable-next-line @next/next/no-img-element */ }
3738 < img
3839 src = { post . image }
3940 alt = { post . title }
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ export function ToolsLinkHub({ relatedTools }: ToolsLinkHubProps) {
100100 < div className = "mt-16 pt-8 border-t border-gray-200" >
101101 < div className = "text-center" >
102102 < p className = "text-sm text-gray-600 mb-4" >
103- Can' t find what you' re looking for?
103+ Can' t find what you' re looking for?
104104 </ p >
105105 < a
106106 href = "/tools"
You can’t perform that action at this time.
0 commit comments