We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 346120f commit 3c4d92bCopy full SHA for 3c4d92b
frontend/utils/timeAgo.ts
@@ -20,5 +20,5 @@ export function timeAgo(date: Date | string): string {
20
// Force english because JSR is an English-only project
21
// @ts-ignore - TS doesn't know about this API yet
22
const formatter = new Intl.DurationFormat("en", { style: "long" });
23
- return formatter.format(duration);
+ return formatter.format(duration) + " ago";
24
}
0 commit comments