Skip to content

Commit 8bc0f2c

Browse files
committed
convert to hours
1 parent 8bfb9db commit 8bc0f2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/userLookup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ const UserPlaytime = (props: { id: number }) => {
513513
.sort((a, b) => b.totalMinutes - a.totalMinutes)
514514
.map((playtime) => (
515515
<div key={playtime.id}>
516-
{playtime.roleId}: {playtime.totalMinutes} minutes
516+
{playtime.roleId}: {playtime.totalMinutes / 60} hours
517517
</div>
518518
))}
519519
</div>

0 commit comments

Comments
 (0)