From 2898fadf94e38e1c27b602095d83e148a650930a Mon Sep 17 00:00:00 2001 From: Julian Roeland Date: Tue, 24 Sep 2024 13:02:11 +0200 Subject: [PATCH] :bug: - fix: fix build --- frontend/src/lib/format/date.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/format/date.ts b/frontend/src/lib/format/date.ts index bd33a468..47a90fc4 100644 --- a/frontend/src/lib/format/date.ts +++ b/frontend/src/lib/format/date.ts @@ -82,7 +82,7 @@ export function timeAgo( if (isFuture) { result = `over ${intervalCount}${shortFormat ? "" : " "}${label}`; } else { - result = `${intervalCount}${shortFormat ? "" : " "}${label} geleden`; + result = `${intervalCount}${shortFormat ? "" : " "}${label}`; } break; }