Skip to content

Commit

Permalink
fix country
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorfieeee committed Dec 31, 2024
1 parent 0226596 commit 2d647a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rcongui/src/components/shared/card/PlayerCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function PlayerCard({ player }) {
"MMM DD, YYYY"
);
const lastSeen = dayjs(player.last_seen_timestamp_ms).fromNow();
const country = player?.steaminfo?.profile?.country;
const country = player?.steaminfo?.country;
const totalPlaytime = dayjs
.duration(player.total_playtime_seconds * 1000)
.asHours()
Expand Down

0 comments on commit 2d647a9

Please sign in to comment.