Skip to content

Commit

Permalink
fix placement
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcramer committed Mar 10, 2025
1 parent 10e3358 commit 3a1d98d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/identity/utils/getAvatars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<GetAvatarReturnType[]> => {
}: // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: ignore
GetAvatars): Promise<GetAvatarReturnType[]> => {
if (!ensNames || ensNames.length === 0) {
return [];
}
Expand Down
2 changes: 1 addition & 1 deletion src/identity/utils/getNames.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<GetNameReturnType[]> => {
if (!addresses || addresses.length === 0) {
return [];
Expand Down

0 comments on commit 3a1d98d

Please sign in to comment.