diff --git a/src/plugins/memberCount.tsx b/src/plugins/memberCount.tsx index c016dff7..6377a9be 100644 --- a/src/plugins/memberCount.tsx +++ b/src/plugins/memberCount.tsx @@ -35,11 +35,13 @@ function MemberCount() { if (!c) return null; - let total = String(c[0]); + let total = c[0].toLocaleString(); if (total === "0" && c[1] > 0) { total = "Loading..."; } + const online = c[1].toLocaleString(); + return ( - + {props => (
- {c[1]} + {online}
)}
- + {props => (