make urls look less awful (remove query params)
All checks were successful
deploy / deploy (push) Successful in 53s

This commit is contained in:
Lee
2023-10-24 12:56:28 +01:00
parent 3e10b0108b
commit 171dfd9cc0
12 changed files with 47 additions and 84 deletions

View File

@ -169,9 +169,7 @@ export default function PlayerInfo({ playerData }: PlayerInfoProps) {
<a
className="flex transform-gpu items-center gap-1 transition-all hover:text-blue-500"
href={`/ranking/global/?page=${Math.round(
playerData.rank / 50,
)}`}
href={`/ranking/global/${Math.round(playerData.rank / 50)}`}
>
<p>#{formatNumber(playerData.rank)}</p>
</a>
@ -181,7 +179,7 @@ export default function PlayerInfo({ playerData }: PlayerInfoProps) {
<div className="text-gray-300">
<a
className="flex transform-gpu items-center gap-1 transition-all hover:text-blue-500"
href={`/ranking/country/${playerData.country}?page=${Math.round(
href={`/ranking/country/${playerData.country}/${Math.round(
playerData.countryRank / 50,
)}`}
>