mirror of
https://github.com/immich-app/immich.git
synced 2025-01-17 01:06:46 +01:00
fix(web): memories year missing (#9787)
This commit is contained in:
parent
6879bcb7a4
commit
fc5615eff6
1 changed files with 1 additions and 1 deletions
|
@ -291,4 +291,4 @@ export const handlePromiseError = <T>(promise: Promise<T>): void => {
|
|||
|
||||
export const s = (count: number) => (count === 1 ? '' : 's');
|
||||
|
||||
export const memoryLaneTitle = (yearsAgo: number) => `year${s(yearsAgo)} ago`;
|
||||
export const memoryLaneTitle = (yearsAgo: number) => `${yearsAgo} year${s(yearsAgo)} ago`;
|
||||
|
|
Loading…
Reference in a new issue