Skip to content

Commit

Permalink
fix(frontend): 🐛 replace the value sent when unstaking UniTokens
Browse files Browse the repository at this point in the history
  • Loading branch information
markogracin committed Oct 25, 2024
1 parent 729ff4b commit cb587c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const Disabled: React.FC = () => {
await result.waitForReceipt();
}, [hasStake]);
const loadableWithdraw = useLoadingState(async () => {
const result = await liquityContext.liquity.send.unstakeUniTokens(liquidityMiningHLQTReward);
const result = await liquityContext.liquity.send.unstakeUniTokens(liquidityMiningStake);
await result.waitForReceipt();
}, [hasStake]);

Expand Down

0 comments on commit cb587c4

Please sign in to comment.