Skip to content

Commit

Permalink
🐛 - fix: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Xaohs committed Sep 24, 2024
1 parent 561ff5c commit 2898fad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/format/date.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 2898fad

Please sign in to comment.