Skip to content

Commit

Permalink
convert to hours
Browse files Browse the repository at this point in the history
  • Loading branch information
harryob committed Nov 1, 2024
1 parent 8bfb9db commit 8bc0f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/userLookup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ const UserPlaytime = (props: { id: number }) => {
.sort((a, b) => b.totalMinutes - a.totalMinutes)
.map((playtime) => (
<div key={playtime.id}>
{playtime.roleId}: {playtime.totalMinutes} minutes
{playtime.roleId}: {playtime.totalMinutes / 60} hours
</div>
))}
</div>
Expand Down

0 comments on commit 8bc0f2c

Please sign in to comment.