We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df478bf commit 87d482aCopy full SHA for 87d482a
server/src/billing/billing.service.ts
@@ -48,7 +48,7 @@ export class BillingService {
48
.find(query)
49
.skip((page - 1) * pageSize)
50
.limit(pageSize)
51
- .sort({ startTime: -1 })
+ .sort({ startAt: -1 })
52
.toArray()
53
54
const res = {
web/src/pages/app/setting/Usage/index.tsx
@@ -34,7 +34,7 @@ export default function Usage() {
34
<h1 className="mb-4 text-2xl font-bold">Usage</h1>
35
<HStack className="mt-4">
36
<span className=" text-grayModern-500">{t("Balance")}:</span>
37
- <span>{accountRes?.data?.balance}</span>
+ <span>{(accountRes?.data?.balance ?? 0) / 100}</span>
38
<ChargeButton>
39
<span className="cursor-pointer text-blue-800">{t("ChargeNow")}</span>
40
</ChargeButton>
0 commit comments