diff --git a/src/render/instantview.ts b/src/render/instantview.ts
index f2594cc..b770edd 100644
--- a/src/render/instantview.ts
+++ b/src/render/instantview.ts
@@ -201,7 +201,7 @@ const generateStatusFooter = (status: APIStatus, isQuote = false, author: APIUse
};
const generatePoll = (poll: APIPoll, language: string): string => {
- // const formatNumber = Intl.NumberFormat(language ?? 'en')
+ const intlFormat = Intl.NumberFormat(language ?? 'en');
let str = '';
const barLength = 20;
@@ -209,10 +209,10 @@ const generatePoll = (poll: APIPoll, language: string): string => {
poll.choices.forEach(choice => {
const bar = '█'.repeat((choice.percentage / 100) * barLength);
// eslint-disable-next-line no-irregular-whitespace
- str += `${bar}
${choice.label}
${choice.count} votes, ${choice.percentage}%
`;
+ str += `${bar}
${choice.label}
${intlFormat.format(choice.count)} votes, ${intlFormat.format(choice.percentage)}%
`;
});
/* Finally, add the footer of the poll with # of votes and time left */
- str += `
${formatNumber(poll.total_votes)} votes · ${poll.time_left_en}`;
+ str += `
${intlFormat.format(poll.total_votes)} votes · ${poll.time_left_en}`;
return str;
};