From 3a1d98dac448421765e6ee1bb182d1c8b489a5ce Mon Sep 17 00:00:00 2001 From: Paul Cramer Date: Mon, 10 Mar 2025 15:13:54 -0700 Subject: [PATCH] fix placement --- src/identity/utils/getAvatars.ts | 4 ++-- src/identity/utils/getNames.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/identity/utils/getAvatars.ts b/src/identity/utils/getAvatars.ts index 26f6dde915..6427f8e94b 100644 --- a/src/identity/utils/getAvatars.ts +++ b/src/identity/utils/getAvatars.ts @@ -18,11 +18,11 @@ export type GetAvatars = { * avatars for a given array of ENS names in a single batch request. * It returns an array of avatar URLs in the same order as the input names. */ -// biome-ignore lint/complexity/noExcessiveCognitiveComplexity: ignore export const getAvatars = async ({ ensNames, chain = mainnet, -}: GetAvatars): Promise => { +}: // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: ignore +GetAvatars): Promise => { if (!ensNames || ensNames.length === 0) { return []; } diff --git a/src/identity/utils/getNames.ts b/src/identity/utils/getNames.ts index 6f4d15cb2c..3affa50c48 100644 --- a/src/identity/utils/getNames.ts +++ b/src/identity/utils/getNames.ts @@ -18,10 +18,10 @@ export type GetNames = { * names for a given array of Ethereum addresses in a single batch request. * It returns an array of ENS names in the same order as the input addresses. */ -// biome-ignore lint/complexity/noExcessiveCognitiveComplexity: ignore export const getNames = async ({ addresses, chain = mainnet, + // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: ignore }: GetNames): Promise => { if (!addresses || addresses.length === 0) { return [];