Skip to content

Commit 37741e9

Browse files
committed
fix types
1 parent 08d8314 commit 37741e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/[locale]/10years/_components/AdoptionSwiper.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use client"
22

3+
import type { StaticImageData } from "next/image"
34
import { useTranslations } from "next-intl"
45

56
import { Image } from "@/components/Image"
@@ -15,7 +16,7 @@ import {
1516
import { cn } from "@/lib/utils/cn"
1617

1718
type AdoptionCardProps = {
18-
adoptionCards: { image: unknown; href: string }[]
19+
adoptionCards: { image: StaticImageData; href: string }[]
1920
adoptionStyles: string[]
2021
}
2122

0 commit comments

Comments
 (0)