Skip to content

Commit

Permalink
Allow submit on delegate removal (#619)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpierre authored Nov 26, 2024
1 parent 0066937 commit 1020a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/src/screens/LoanScreen/PanelUpdateRate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export function PanelUpdateRate({
&& dn.gt(debt.parsed, 0)
&& interestRate
&& dn.gt(interestRate, 0)
&& !dn.eq(interestRate, loan.interestRate);
&& (!dn.eq(interestRate, loan.interestRate) || loan.batchManager !== interestRateDelegate);

return (
<>
Expand Down

0 comments on commit 1020a78

Please sign in to comment.