Skip to content

Commit

Permalink
fix(Redeem): premium redeem (#1454)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsimao authored Jul 14, 2023
1 parent d97bd0b commit d7a5fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/hooks/api/bridge/use-get-redeem-data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const getRedeemData = async (): Promise<RedeemData> => {

const redeemLimit = vaultsWithRedeemableTokens.values().next().value || newMonetaryAmount(0, WRAPPED_TOKEN);

const premiumRedeemLimit = premiumRedeemVaults.values().next().value || newMonetaryAmount(0, WRAPPED_TOKEN);
const premiumRedeemLimit = premiumRedeemVaults.values().next().value;

const premium = premiumRedeemLimit
? {
Expand Down

2 comments on commit d7a5fdb

@vercel
Copy link

@vercel vercel bot commented on d7a5fdb Jul 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on d7a5fdb Jul 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.