Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
Corantin committed Aug 23, 2023
1 parent 50e01bd commit 880b68e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export default function PlayerListModal({
status: TransactionStatus.Pending,
});
});
onSubmit();
}
};

Expand All @@ -122,7 +123,11 @@ export default function PlayerListModal({
<OpenButtonStyled
onClick={() => setOpened(true)}
icon={<IconGroup />}
label="View Player List"
label={
walletAddress === questData.creatorAddress && questData.isWhitelist
? 'Edit Player List'
: 'View Player List'
}
mode="strong"
title="Player List"
/>
Expand Down

0 comments on commit 880b68e

Please sign in to comment.