Skip to content

Commit ebadbe4

Browse files
committed
update aggregate limits
1 parent ffcc898 commit ebadbe4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/features/ccip/components/supported-networks/LaneConfig.astro

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@ const displayRate = (capacity: string, rate: string, symbol: string, decimals: n
7070
const totalRefillTime = capacityNormalized / rateNormalized // in seconds
7171
const displayTime = `${formatTime(totalRefillTime)}`
7272
73+
const rateWithComma = utils.commify(rateNormalized)
74+
7375
return {
74-
rateSecond: `${rateNormalized} ${symbol}/second`,
76+
rateSecond: `${rateWithComma} ${symbol}/second`,
7577
maxThroughput: `Refills from 0 to ${utils.commify(capacityNormalized)} ${symbol} in ${displayTime}`,
7678
}
7779
}

0 commit comments

Comments
 (0)