Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcramer committed Mar 10, 2025
1 parent a6e7cdd commit a8ca0f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/identity/utils/getAvatars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ export const getAvatars = async ({
}

// Apply default Base profile pictures for basenames that don't have avatars
basenameIndices.forEach((index) => {
for (const index of basenameIndices) {
if (results[index] === null) {
results[index] = getBaseDefaultProfilePicture(
ensNames[index] as Basename,
);
}
});
}

return results;
};
1 change: 1 addition & 0 deletions src/identity/utils/getNames.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ 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,
Expand Down

0 comments on commit a8ca0f5

Please sign in to comment.