format online player count in embed
All checks were successful
deploy / deploy (push) Successful in 53s
All checks were successful
deploy / deploy (push) Successful in 53s
This commit is contained in:
parent
1a0d9afb82
commit
2ce413ad3f
@ -3,6 +3,7 @@ import Card from "@/components/Card";
|
|||||||
import Container from "@/components/Container";
|
import Container from "@/components/Container";
|
||||||
import { ScoresaberPlayerCountHistory } from "@/schemas/fascinated/scoresaberPlayerCountHistory";
|
import { ScoresaberPlayerCountHistory } from "@/schemas/fascinated/scoresaberPlayerCountHistory";
|
||||||
import { ssrSettings } from "@/ssrSettings";
|
import { ssrSettings } from "@/ssrSettings";
|
||||||
|
import { formatNumber } from "@/utils/number";
|
||||||
import { Metadata } from "next";
|
import { Metadata } from "next";
|
||||||
|
|
||||||
async function getData() {
|
async function getData() {
|
||||||
@ -33,7 +34,9 @@ export async function generateMetadata(): Promise<Metadata> {
|
|||||||
description:
|
description:
|
||||||
description +
|
description +
|
||||||
`
|
`
|
||||||
Players currently online: ${data.history[data.history.length - 1].value}`,
|
Players currently online: ${formatNumber(
|
||||||
|
data.history[data.history.length - 1].value,
|
||||||
|
)}`,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user