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 [];