Skip to content

Commit 9ac8c92

Browse files
committed
changed from Avarage to Average on table
1 parent 842c300 commit 9ac8c92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/leaderboard/users-table.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export function UsersTable({ data, pageCount }: UsersTableProps) {
6363
header: () => {
6464
return (
6565
<div className="flex items-center gap-2">
66-
<span>Avarage cpm</span>
66+
<span>Average cpm</span>
6767
<TooltipProvider>
6868
<Tooltip>
6969
<TooltipTrigger>
@@ -80,7 +80,7 @@ export function UsersTable({ data, pageCount }: UsersTableProps) {
8080
},
8181
{
8282
accessorKey: "avarageAccuracy",
83-
header: "Avarage accuracy",
83+
header: "Average accuracy",
8484
cell: ({ cell }) => {
8585
const avgAccuracy = cell.getValue() as number;
8686

0 commit comments

Comments
 (0)