remove debug and fix days ago label
All checks were successful
Deploy / deploy (push) Successful in 2m42s
All checks were successful
Deploy / deploy (push) Successful in 2m42s
This commit is contained in:
parent
6079f8228c
commit
dda873b2fe
@ -169,7 +169,6 @@ type Props = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export default function PlayerRankChart({ player }: Props) {
|
export default function PlayerRankChart({ player }: Props) {
|
||||||
console.log(player.statisticHistory);
|
|
||||||
if (
|
if (
|
||||||
player.statisticHistory === undefined ||
|
player.statisticHistory === undefined ||
|
||||||
Object.keys(player.statisticHistory).length === 0
|
Object.keys(player.statisticHistory).length === 0
|
||||||
@ -194,11 +193,10 @@ export default function PlayerRankChart({ player }: Props) {
|
|||||||
// Create labels based on days ago
|
// Create labels based on days ago
|
||||||
if (daysAgo === 0) {
|
if (daysAgo === 0) {
|
||||||
labels.push("Today");
|
labels.push("Today");
|
||||||
console.log(dateString);
|
|
||||||
} else if (daysAgo === 1) {
|
} else if (daysAgo === 1) {
|
||||||
labels.push("Yesterday");
|
labels.push("Yesterday");
|
||||||
} else {
|
} else {
|
||||||
labels.push(`${daysAgo} days ago`);
|
labels.push(`${daysAgo + 1} days ago`);
|
||||||
}
|
}
|
||||||
|
|
||||||
history.rank && histories.rank.push(history.rank);
|
history.rank && histories.rank.push(history.rank);
|
||||||
|
Reference in New Issue
Block a user