Skip to content

Commit

Permalink
chore: merge merkle conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakMooney committed Nov 12, 2024
2 parents 7dfb18b + ac2dd52 commit 3c2cfa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/vault/merkl/ClaimModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ const ClaimModal = (props) => {
//
} else if (isSuccess) {
toast.success("Claim Successful");
closeModal();
} else if (isError) {
console.error(error)
toast.error('There was an error');
Expand Down
2 changes: 1 addition & 1 deletion src/components/vault/merkl/RewardList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const RewardList = ({
if (merklBalances) {
if (merklBalances[index]) {
if (merklBalances[index].result) {
useBalance = rewardDecimals[index].result;
useBalance = merklBalances[index].result;
}
return {
...merklRewards[index],
Expand Down

0 comments on commit 3c2cfa0

Please sign in to comment.