From ee7c0a64c3bd8266f2f87783a9b1113fcffc84e3 Mon Sep 17 00:00:00 2001 From: Artem Savchenko Date: Wed, 8 Apr 2026 14:58:37 +0700 Subject: [PATCH] Fix formatting Signed-off-by: Artem Savchenko --- dev/tool/src/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev/tool/src/index.ts b/dev/tool/src/index.ts index 3f26bae7d8..d624a32500 100644 --- a/dev/tool/src/index.ts +++ b/dev/tool/src/index.ts @@ -335,9 +335,7 @@ export function devTool ( const rawRole = typeof raw === 'string' ? raw.trim() : String(raw ?? 'User').trim() const normalized = rawRole.trim().toLowerCase() - const match = Object.values(AccountRole).find( - (v) => v.toLowerCase() === normalized - ) + const match = Object.values(AccountRole).find((v) => v.toLowerCase() === normalized) if (match !== undefined) return match switch (normalized) {