Skip to content

Commit b8f58d9

Browse files
committed
fix: apr bug
1 parent 33b8ce0 commit b8f58d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/useMeritIncentives.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ export const useMeritIncentives = ({
732732
return null;
733733
}
734734

735-
const meritIncentivesAPR = APR / 100;
735+
const meritIncentivesAPR = maxAPR / 100;
736736

737737
const protocolIncentivesAPR = protocolIncentives.reduce((sum, inc) => {
738738
return sum + (inc.incentiveAPR === 'Infinity' ? 0 : +inc.incentiveAPR);

0 commit comments

Comments
 (0)