From 8449d4670f34b45565f019b01134db2b3b71a2dd Mon Sep 17 00:00:00 2001 From: cpacker Date: Tue, 10 Feb 2026 11:29:15 -0800 Subject: [PATCH] fix: restore biome formatting in error formatter helper MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reformat findEncryptedContentDetail to match Biome output so lint passes on main after the recent merge. 👾 Generated with [Letta Code](https://letta.com) Co-Authored-By: Letta --- src/cli/helpers/errorFormatter.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cli/helpers/errorFormatter.ts b/src/cli/helpers/errorFormatter.ts index d5c438d..16697df 100644 --- a/src/cli/helpers/errorFormatter.ts +++ b/src/cli/helpers/errorFormatter.ts @@ -178,9 +178,7 @@ const ENCRYPTED_CONTENT_HINT = [ * Walk the error object to find the `detail` string containing the encrypted content error. * Handles both direct (e.detail) and nested (e.error.error.detail) structures. */ -function findEncryptedContentDetail( - e: unknown, -): string | undefined { +function findEncryptedContentDetail(e: unknown): string | undefined { if (typeof e !== "object" || e === null) return undefined; const obj = e as Record;