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) {
238
238
< CardContent >
239
239
{ fileType . more_information . screenshot && (
240
240
< figure className = "mb-6" >
241
+ { /* eslint-disable-next-line @next/next/no-img-element */ }
241
242
< img
242
243
src = { fileType . more_information . screenshot . url }
243
244
alt = { fileType . more_information . screenshot . alt }
Original file line number Diff line number Diff line change @@ -408,6 +408,7 @@ function FileTypeDetail({ slug }: FileTypeDetailProps) {
408
408
< div className = "space-y-6" >
409
409
{ fileType . more_information . screenshot && (
410
410
< figure className = "mb-6" >
411
+ { /* eslint-disable-next-line @next/next/no-img-element */ }
411
412
< img
412
413
src = { fileType . more_information . screenshot . url }
413
414
srcSet = { fileType . more_information . screenshot . srcset }
@@ -499,6 +500,7 @@ function FileTypeDetail({ slug }: FileTypeDetailProps) {
499
500
< div key = { index } className = "flex items-center justify-between p-3 bg-gray-50 dark:bg-gray-700/50 rounded-lg" >
500
501
< div className = "flex items-center gap-3" >
501
502
{ program . icon && (
503
+ /* eslint-disable-next-line @next/next/no-img-element */
502
504
< img
503
505
src = { program . icon }
504
506
alt = { program . name }
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ export function BlogSection({ blogPosts }: BlogSectionProps) {
34
34
>
35
35
{ post . image ? (
36
36
< div className = "aspect-[16/10] bg-gray-100" >
37
+ { /* eslint-disable-next-line @next/next/no-img-element */ }
37
38
< img
38
39
src = { post . image }
39
40
alt = { post . title }
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ export function ToolsLinkHub({ relatedTools }: ToolsLinkHubProps) {
100
100
< div className = "mt-16 pt-8 border-t border-gray-200" >
101
101
< div className = "text-center" >
102
102
< 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?
104
104
</ p >
105
105
< a
106
106
href = "/tools"
You can’t perform that action at this time.
0 commit comments