Skip to content

Commit

Permalink
r$
Browse files Browse the repository at this point in the history
  • Loading branch information
vys69 committed Oct 31, 2024
1 parent de04e4e commit 1087e66
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/routes.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/routes.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ router.get('/users/:userId/profile', async (req, res) => {
maximumFractionDigits: 0,
}).format(rolimonData.value);

const robuxValue = `R$ ${formattedValue}`;
const robuxValue = `R$${formattedValue}`;

const formattedFriends = new Intl.NumberFormat('en-US').format(friendsData.count);

const formattedFollowers = new Intl.NumberFormat('en-US').format(followersData.count);

const statsText = encodeURIComponent(`👤 ${formattedFriends} 👥 ${formattedFollowers} 💰 ${robuxValue}`);
const statsText = encodeURIComponent(`👤 ${formattedFriends} 👥 ${formattedFollowers} ${robuxValue}`);

const metaTags = `
<meta property="og:site_name" content="FixRoblox / Rxblox">
Expand Down

0 comments on commit 1087e66

Please sign in to comment.