diff --git a/web/src/components/submission-details.tsx b/web/src/components/submission-details.tsx index 7c1cdabe..50be0db8 100644 --- a/web/src/components/submission-details.tsx +++ b/web/src/components/submission-details.tsx @@ -1,6 +1,6 @@ "use client" -import { Calendar, Check, Download, ExternalLink, FileType, FolderOpen, Palette, Tag, User as UserIcon, X } from "lucide-react" +import { Calendar, Check, Download, ExternalLink, FileType, FolderOpen, Palette, Tag, User as UserIcon, X, Eye } from "lucide-react" import Image from "next/image" import Link from "next/link" import { IconCard } from "@/components/icon-card" @@ -193,40 +193,48 @@ export function SubmissionDetails({ Submission Details - {(onApprove || onReject) && ( -
- {onApprove && ( - - )} - {onReject && ( - - )} -
- )} +
+ + {(onApprove || onReject) && ( + <> + {onApprove && ( + + )} + {onReject && ( + + )} + + )} +