dont show country flags on country ranking page
All checks were successful
deploy / deploy (push) Successful in 57s

This commit is contained in:
Lee
2023-10-22 06:26:07 +01:00
parent e71ffbdd95
commit 7e3e4a7d18
2 changed files with 17 additions and 11 deletions

View File

@ -20,11 +20,11 @@ type PageInfo = {
players: ScoresaberPlayer[];
};
export default function RankingCountry({
params,
}: {
type RankingCountryProps = {
params: { country: string };
}) {
};
export default function RankingCountry({ params }: RankingCountryProps) {
const searchParams = useSearchParams();
const router = useRouter();
@ -141,7 +141,7 @@ export default function RankingCountry({
<tbody className="border-none">
{players.map((player) => (
<tr key={player.rank} className="border-b border-gray-700">
<PlayerRanking player={player} />
<PlayerRanking showCountryFlag={false} player={player} />
</tr>
))}
</tbody>