This commit is contained in:
Frank
2025-10-11 08:24:42 -04:00
parent 1940d1cf87
commit b732b4caeb

View File

@@ -130,12 +130,11 @@ function MemberRow(props: { member: any; workspaceID: string; actorID: string; a
month: "long",
timeZone: "UTC",
})
const usage = current === lastUsed ? (props.member.monthlyUsage ?? 0) : 0
return (usage / 100000000).toFixed(2)
return current === lastUsed ? (props.member.monthlyUsage ?? 0) : 0
})()
const limit = props.member.monthlyLimit ? `$${props.member.monthlyLimit}` : "no limit"
return `$${currentUsage} / ${limit}`
return `$${(currentUsage / 100000000).toFixed(2)} / ${limit}`
}
return (