mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
style(console): prepend space for plan usage percentage (#4273)
This commit is contained in:
parent
64e78024e0
commit
caaaf18b4b
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ function PlanUsage({ subscriptionUsage, currentSubscription, currentPlan }: Prop
|
|||
mauLimit.toLocaleString()
|
||||
)}
|
||||
{' MAU'}
|
||||
{usagePercent && `(${(usagePercent * 100).toFixed(2)}%)`}
|
||||
{usagePercent && ` (${(usagePercent * 100).toFixed(2)}%)`}
|
||||
</div>
|
||||
<div className={styles.planCycle}>
|
||||
<DynamicT
|
||||
|
|
Loading…
Reference in a new issue