Skip to content

Commit 4a5805e

Browse files
[hotkey]
1 parent 7f3c075 commit 4a5805e

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

app/filetypes/FileTypeDetail-old.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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}

app/filetypes/FileTypeDetail.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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}

components/sections/BlogSection.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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}

components/sections/ToolsLinkHub.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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&apos;t find what you&apos;re looking for?
104104
</p>
105105
<a
106106
href="/tools"

0 commit comments

Comments
 (0)