mirror of
https://github.com/immich-app/immich.git
synced 2025-03-11 02:23:09 -05: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…
Add table
Reference in a new issue