From 71dc0bb4fc65fb9e52b2a2496d2236ad3f241fa4 Mon Sep 17 00:00:00 2001 From: codytseng Date: Mon, 9 Feb 2026 22:02:01 +0800 Subject: [PATCH] fix: prevent horizontal overflow of relay tags Add flex-wrap to the relay tags container so tags wrap to the next line instead of overflowing horizontally. Co-Authored-By: Claude Opus 4.6 --- src/components/RelayInfo/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/RelayInfo/index.tsx b/src/components/RelayInfo/index.tsx index b939ec5..0764117 100644 --- a/src/components/RelayInfo/index.tsx +++ b/src/components/RelayInfo/index.tsx @@ -48,7 +48,7 @@ export default function RelayInfo({ url, className }: { url: string; className?: {!!relayInfo.tags?.length && ( -
+
{relayInfo.tags.map((tag) => ( {tag} ))}