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:
@@ -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>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user