Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
begonaalvarezd committed Oct 29, 2024
1 parent abab509 commit 9d03b3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/wallet-dashboard/lib/utils/vesting/vesting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ export function getVestingOverview(
);
const totalAvailableStakingAmount = timelockedObjects.reduce(
(acc, current) =>
current.expirationTimestampMs > currentEpochTimestamp && current.locked.value > MIN_STAKING_THRESHOLD
current.expirationTimestampMs > currentEpochTimestamp &&
current.locked.value > MIN_STAKING_THRESHOLD
? acc + current.locked.value
: acc,
0,
Expand Down

0 comments on commit 9d03b3a

Please sign in to comment.