Skip to content

Commit

Permalink
chore: let -> const
Browse files Browse the repository at this point in the history
  • Loading branch information
peterferguson committed Apr 4, 2024
1 parent 3558859 commit 5df30b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actions/add-members.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export async function addMembers(
groupId: string,
members: Address[],
): Promise<{ pendingMembers: Address[]; members: Address[] }> {
let existingMembers: Address[] = [];
let pendingMembers: Address[] = [];
const existingMembers: Address[] = [];
const pendingMembers: Address[] = [];

// - Try to add all the members to the group if this fails
// - then we will try to add each member individually to determine
Expand Down

0 comments on commit 5df30b9

Please sign in to comment.