From 37bc1bba226bca1cf112e3af56ed2d8ca502e27c Mon Sep 17 00:00:00 2001 From: chan Date: Wed, 1 Apr 2026 13:58:06 +0900 Subject: [PATCH] chore: add missing i18n keys and fix devfront formatting --- devfront/src/features/clients/ClientGeneralPage.tsx | 2 +- devfront/tests/devfront-clients-lifecycle.spec.ts | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/devfront/src/features/clients/ClientGeneralPage.tsx b/devfront/src/features/clients/ClientGeneralPage.tsx index 02c36e70..193c7053 100644 --- a/devfront/src/features/clients/ClientGeneralPage.tsx +++ b/devfront/src/features/clients/ClientGeneralPage.tsx @@ -38,8 +38,8 @@ import type { ClientUpsertRequest, } from "../../lib/devApi"; import { t } from "../../lib/i18n"; -import { cn } from "../../lib/utils"; import { tryConvertToJwks } from "../../lib/keyUtils"; +import { cn } from "../../lib/utils"; interface ScopeItem { id: string; diff --git a/devfront/tests/devfront-clients-lifecycle.spec.ts b/devfront/tests/devfront-clients-lifecycle.spec.ts index e5c8fba8..1d9344ee 100644 --- a/devfront/tests/devfront-clients-lifecycle.spec.ts +++ b/devfront/tests/devfront-clients-lifecycle.spec.ts @@ -124,11 +124,14 @@ test.describe("DevFront clients lifecycle", () => { }); test("pkce headless login with inline ssh-rsa key should persist mapped payload", async ({ - page, + page, }) => { const state = { clients: [ - makeClient("client-headless-login", { name: "Headless Login App", type: "pkce" }), + makeClient("client-headless-login", { + name: "Headless Login App", + type: "pkce", + }), ], consents: [] as Consent[], auditLogsByCursor: undefined,