Skip to content

Commit c9909e6

Browse files
committed
fix date format in daily chart, typo in TestStats
1 parent f6fd6cb commit c9909e6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/ts/components/pages/account/DailyActivityChart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export function DailyActivityChart(props: {
152152

153153
return dateFormat(
154154
new Date(item.dayTimestamp as number),
155-
"dd MMM yyy",
155+
"dd MMM yyyy",
156156
);
157157
},
158158
beforeLabel: function (tooltipItem): string {

frontend/src/ts/components/pages/account/TestStats.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function TestStats(props: {
4242
return (
4343
<>
4444
<div class="flex items-center justify-center text-sub">
45-
estimate words typed{" "}
45+
estimated words typed{" "}
4646
<span class="p-5 text-5xl text-text lg:text-5xl">
4747
{stats.words}
4848
</span>

0 commit comments

Comments
 (0)