From 1a107e2fab6d8a7757ca29659c48a316eece84eb Mon Sep 17 00:00:00 2001 From: kimjaehyeon0101 <47347352-kimjaehyeon0101@users.noreply.replit.com> Date: Mon, 29 Sep 2025 17:52:30 +0000 Subject: [PATCH] Update media outlet display to show descriptions instead of categories Replace hardcoded category strings with dynamic outlet descriptions in the MainContent component. 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/LZrXNFV --- client/src/components/MainContent.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/src/components/MainContent.tsx b/client/src/components/MainContent.tsx index 89a718d..473d2a9 100644 --- a/client/src/components/MainContent.tsx +++ b/client/src/components/MainContent.tsx @@ -61,9 +61,7 @@ export default function MainContent() { {outlet.name}

- {outlet.category === "People" && "Media Personality"} - {outlet.category === "Topics" && "Industry Topic"} - {outlet.category === "Companies" && "Technology Company"} + {outlet.description || "Media Outlet"}