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;