fix: restore biome formatting in error formatter helper

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 <noreply@letta.com>
This commit is contained in:
cpacker
2026-02-10 11:29:15 -08:00
parent fe99bfe4fd
commit 8449d4670f

View File

@@ -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<string, unknown>;