From 228880b977f1226fc4eb2b58d2996d3c9669c080 Mon Sep 17 00:00:00 2001 From: Benno Tielen Date: Tue, 6 Jan 2026 14:56:13 +0100 Subject: [PATCH] fix: image --- src/app/(home)/spenden/[id]/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/(home)/spenden/[id]/page.tsx b/src/app/(home)/spenden/[id]/page.tsx index e7fb064..2dbd6e7 100644 --- a/src/app/(home)/spenden/[id]/page.tsx +++ b/src/app/(home)/spenden/[id]/page.tsx @@ -7,8 +7,7 @@ import { Section } from '@/components/Section/Section' import styles from '@/components/DonationForm/styles.module.scss' import { Row } from '@/components/Flex/Row' import { Col } from '@/components/Flex/Col' -import { Image } from '@/components/Image/Image' -import { getPhoto } from '@/utils/dto/gallery' +import Image from 'next/image' export default async function DonationPage({ params }: { params: Promise<{id: string}>}) { const id = (await params).id; @@ -32,7 +31,7 @@ export default async function DonationPage({ params }: { params: Promise<{id: st { typeof image == "object" && image.url && - + }