Skip to content

Commit

Permalink
(fix/ui) remove duplicate close icon
Browse files Browse the repository at this point in the history
  • Loading branch information
leonjza committed Oct 2, 2024
1 parent 1e57d37 commit 74e7b60
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions web/ui/src/pages/detail/Detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { ScrollArea } from "@/components/ui/scroll-area";
import { ExternalLink, ChevronLeft, ChevronRight, Code, ClockIcon, Trash2Icon, DownloadIcon, ImagesIcon, ZoomInIcon, XIcon, CopyIcon } from 'lucide-react';
import { ExternalLink, ChevronLeft, ChevronRight, Code, ClockIcon, Trash2Icon, DownloadIcon, ImagesIcon, ZoomInIcon, CopyIcon } from 'lucide-react';
import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog";
import { WideSkeleton } from '@/components/loading';
import { Form, Link, useNavigate, useParams } from 'react-router-dom';
Expand Down Expand Up @@ -178,7 +178,6 @@ const ScreenshotDetailPage = () => {
onClick={() => setIsModalOpen(false)}
className="absolute top-4 right-4 p-2 bg-black bg-opacity-50 rounded-full text-white hover:bg-opacity-75 transition-all"
>
<XIcon className="w-6 h-6" />
</button>
</div>
</DialogContent>
Expand Down

0 comments on commit 74e7b60

Please sign in to comment.