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[]; };