Skip to content

Commit 8763914

Browse files
authored
Update productive-time-card.ts
add missing 'UTC' in line 18
1 parent 71ad107 commit 8763914

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/templates/productive-time-card.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function createProductiveCard(chartData: number[], theme: Theme, utcOffse
1515
const minutes = Math.round((absOffset - hours) * 60);
1616

1717
if (minutes >= 60) {
18-
return `${sign}${hours + 1}:00`;
18+
return `UTC${sign}${hours + 1}:00`;
1919
}
2020

2121
return `UTC${sign}${hours}:${minutes.toString().padStart(2, '0')}`;

0 commit comments

Comments
 (0)