From f0362df47d1d802a0aa8ed929d0cc2c24c0d6565 Mon Sep 17 00:00:00 2001 From: kyy Date: Wed, 11 Feb 2026 17:35:31 +0900 Subject: [PATCH] =?UTF-8?q?API=20=EB=B3=80=EA=B2=BD=EC=97=90=20=EB=94=B0?= =?UTF-8?q?=EB=A5=B8=20=ED=81=B4=EB=9D=BC=EC=9D=B4=EC=96=B8=ED=8A=B8=20?= =?UTF-8?q?=EA=B4=80=EB=A6=AC=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- devfront/src/features/clients/ClientsPage.tsx | 6 +----- devfront/src/lib/devApi.ts | 1 + 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/devfront/src/features/clients/ClientsPage.tsx b/devfront/src/features/clients/ClientsPage.tsx index a4ae4b3a..39197e21 100644 --- a/devfront/src/features/clients/ClientsPage.tsx +++ b/devfront/src/features/clients/ClientsPage.tsx @@ -211,14 +211,10 @@ function ClientsPage() { variant={ item.tone === "up" ? "success" - : item.tone === "down" - ? "warning" - : "muted" + : "muted" } className={cn( "px-2", - item.tone === "down" && - "bg-rose-100 text-rose-700 dark:bg-rose-900/30 dark:text-rose-200", item.tone === "stable" && "bg-muted/40 text-foreground", )} > diff --git a/devfront/src/lib/devApi.ts b/devfront/src/lib/devApi.ts index 8e47dd83..0aa35ff0 100644 --- a/devfront/src/lib/devApi.ts +++ b/devfront/src/lib/devApi.ts @@ -9,6 +9,7 @@ export type ClientSummary = { type: ClientType; status: ClientStatus; createdAt?: string; + clientSecret?: string; redirectUris: string[]; scopes: string[]; };