From c008d5fb4c69ae4c3aebcb5deab28289aee5744f Mon Sep 17 00:00:00 2001
From: kimjaehyeon0101 <47347352-kimjaehyeon0101@users.noreply.replit.com>
Date: Mon, 29 Sep 2025 21:23:51 +0000
Subject: [PATCH] Remove redundant close button from search popup
Removes a duplicate 'X' icon from the search modal's header, resolving a UI overlap issue and simplifying the interface by retaining only the primary close functionality.
Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/bLfICpO
---
client/src/components/SearchModal.tsx | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/client/src/components/SearchModal.tsx b/client/src/components/SearchModal.tsx
index b89c076..db7de76 100644
--- a/client/src/components/SearchModal.tsx
+++ b/client/src/components/SearchModal.tsx
@@ -3,7 +3,7 @@ import { useQuery } from "@tanstack/react-query";
import { Dialog, DialogContent, DialogTitle } from "@/components/ui/dialog";
import { Input } from "@/components/ui/input";
import { Badge } from "@/components/ui/badge";
-import { Search, X } from "lucide-react";
+import { Search } from "lucide-react";
import { Link } from "wouter";
import type { MediaOutlet, Article } from "@shared/schema";
@@ -63,7 +63,7 @@ export default function SearchModal({ isOpen, onClose }: SearchModalProps) {