Skip to content

Commit

Permalink
fix(unlockp-app): fixing airdrop
Browse files Browse the repository at this point in the history
  • Loading branch information
julien51 committed Jun 18, 2024
1 parent c025689 commit 55f1a43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export function AirdropBulkForm({ lock, onConfirm, emailRequired }: Props) {
)
const toBeAdded = member.count
if (
existingBalance + alreadyToBeAdded + toBeAdded >
Number(existingBalance) + alreadyToBeAdded + toBeAdded >
(lock.maxKeysPerAddress || 1)
) {
console.warn(`Discarded duplicate`, member)
Expand Down

0 comments on commit 55f1a43

Please sign in to comment.