chore: fix typo from copy-paste

This commit is contained in:
Mary
2024-05-30 20:13:09 +07:00
committed by Eric Bailey
parent ba80cc0ae7
commit 3f84d3f024
+2 -2
View File
@@ -55,7 +55,7 @@ export function ago(i18n: I18n, date: number | string | Date): string {
return i18n._(
defineMessage({
message: `${hours}h`,
comment: `How many minutes has passed, displayed in a narrow form`,
comment: `How many hours has passed, displayed in a narrow form`,
}),
)
} else if (diffSeconds < MONTH_30) {
@@ -64,7 +64,7 @@ export function ago(i18n: I18n, date: number | string | Date): string {
return i18n._(
defineMessage({
message: `${days}d`,
comment: `How many minutes has passed, displayed in a narrow form`,
comment: `How many days has passed, displayed in a narrow form`,
}),
)
} else {