From f03d3e373cbf7b474c84c4202f97898db33f873a Mon Sep 17 00:00:00 2001 From: jwkim Date: Thu, 18 Jun 2026 17:18:14 +0900 Subject: [PATCH] =?UTF-8?q?AI=20=EB=AA=A8=EB=8D=B8=20=EC=88=9C=EC=9C=84=20?= =?UTF-8?q?=EB=B6=80=EB=B6=84=20=EA=B0=95=EC=A1=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/RankingBoard.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/RankingBoard.tsx b/frontend/src/components/RankingBoard.tsx index cd5d6f5..3c934ee 100644 --- a/frontend/src/components/RankingBoard.tsx +++ b/frontend/src/components/RankingBoard.tsx @@ -83,7 +83,8 @@ export default function RankingBoard({ {/* TOP 10 목록 */}
    {rows.map((r, i) => { - const top3 = i < 3; + // 참가자는 TOP3 강조, AI는 모델이 3개뿐이라 1위만 강조 + const top3 = tab === "ai" ? i === 0 : i < 3; return (