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;