diff --git a/src/app/(investment)/deals/[id]/displayImage.tsx b/src/app/(investment)/deals/[id]/displayImage.tsx
index 7e48f8b..b1b6557 100644
--- a/src/app/(investment)/deals/[id]/displayImage.tsx
+++ b/src/app/(investment)/deals/[id]/displayImage.tsx
@@ -10,26 +10,32 @@ import {
} from "@/components/ui/dialog";
import Image from "next/image";
import { StaticImport } from "next/dist/shared/lib/get-img-props";
-import { it } from "node:test";
-const ImageModal = ({ item, width }: { item: { src: string | StaticImport; alt: string;} }, number ) => {
+interface ItemProps {
+ src: string | StaticImport;
+ alt: string;
+ width: number;
+ height: number;
+}
+
+const ImageModal = ({ src, alt, width, height }: ItemProps) => {
return (
);
};
-export function DisplayFullImage({ item }: { item: { src: string | StaticImport; alt: string; width: number; height: number } }) {
- return