From 2624931a7f05930b30ed79b5e587760009d218eb Mon Sep 17 00:00:00 2001 From: kyy Date: Mon, 23 Feb 2026 13:14:02 +0900 Subject: [PATCH] =?UTF-8?q?=EC=95=B1=20=EC=9C=A0=ED=98=95=20=EB=AA=85?= =?UTF-8?q?=EC=B9=AD=20Private/PKCE=20=EB=B0=98=EC=98=81=20=EB=B0=8F=20UI?= =?UTF-8?q?=20=EB=A1=9C=EC=A7=81=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../features/clients/ClientGeneralPage.tsx | 28 +++++++++---------- devfront/src/features/clients/ClientsPage.tsx | 12 ++++---- devfront/src/lib/devApi.ts | 2 +- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/devfront/src/features/clients/ClientGeneralPage.tsx b/devfront/src/features/clients/ClientGeneralPage.tsx index bd0b000c..9e50b2c8 100644 --- a/devfront/src/features/clients/ClientGeneralPage.tsx +++ b/devfront/src/features/clients/ClientGeneralPage.tsx @@ -47,7 +47,7 @@ function ClientGeneralPage() { const [name, setName] = useState(""); const [description, setDescription] = useState(""); const [logoUrl, setLogoUrl] = useState(""); - const [clientType, setClientType] = useState("confidential"); + const [clientType, setClientType] = useState("private"); const [status, setStatus] = useState("active"); const [redirectUris, setRedirectUris] = useState(""); const [scopes, setScopes] = useState(() => [ @@ -490,7 +490,7 @@ function ClientGeneralPage() { diff --git a/devfront/src/features/clients/ClientsPage.tsx b/devfront/src/features/clients/ClientsPage.tsx index c551eb16..2672c268 100644 --- a/devfront/src/features/clients/ClientsPage.tsx +++ b/devfront/src/features/clients/ClientsPage.tsx @@ -266,7 +266,7 @@ function ClientsPage() {
- {client.type === "confidential" ? ( + {client.type === "private" ? ( ) : ( @@ -310,15 +310,15 @@ function ClientsPage() { - {client.type === "confidential" + {client.type === "private" ? t( - "ui.dev.clients.type.confidential", - "기밀(Confidential)", + "ui.dev.clients.type.private", + "Private", ) - : t("ui.dev.clients.type.public", "Public")} + : t("ui.dev.clients.type.pkce", "PKCE")} diff --git a/devfront/src/lib/devApi.ts b/devfront/src/lib/devApi.ts index 0aa35ff0..5aa29992 100644 --- a/devfront/src/lib/devApi.ts +++ b/devfront/src/lib/devApi.ts @@ -1,7 +1,7 @@ import apiClient from "./apiClient"; export type ClientStatus = "active" | "inactive"; -export type ClientType = "confidential" | "public"; +export type ClientType = "private" | "pkce"; export type ClientSummary = { id: string;