diff --git a/src/routes/admin/ui.tsx b/src/routes/admin/ui.tsx index 4258d64..ed3d16f 100644 --- a/src/routes/admin/ui.tsx +++ b/src/routes/admin/ui.tsx @@ -257,14 +257,8 @@ export const FeedFormats = ({ // ── Native feed chips ───────────────────────────────────────────────────────── -const NATIVE_LABELS: Record = { - rss: "RSS", - atom: "Atom", - json: "JSON", -}; - const NativeFeedChip = ({ feed }: { feed: NativeFeed }) => { - const label = NATIVE_LABELS[feed.type]; + const label = FORMAT_LABELS[feed.type]; return (
{label} @@ -304,7 +298,7 @@ export const NativeFeeds = ({ feeds }: { feeds: NativeFeed[] }) => { Native feeds
{feeds.map((feed) => ( - + ))}