Skip to content

Commit 80f8e5a

Browse files
NandyBaAlexRLT
andauthored
fix: APY fully rented for properties before start rent day (#85)
Co-authored-by: alex <[email protected]>
1 parent 2d6bbf3 commit 80f8e5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/useFullyRentedAPR.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const useFullyRentedAPR = (token: UserRealtoken) => {
6666

6767
const fullyRentedAPR = useMemo(() => {
6868
const isDisabled = APRDisabled(rentCalculation, token)
69-
if (isDisabled && !isVEFA(token)) return 0
69+
if (isDisabled) return 0
7070
return fullyRentedAPREstimation(token, rentCalculation)
7171
}, [token, rentCalculation])
7272

0 commit comments

Comments
 (0)