refactor(server, web, mobile): Change wording of memory titles (#9025)

Change wording of memory titles
This commit is contained in:
Adam Jackson
2024-04-23 11:08:02 -04:00
committed by GitHub
parent f5cf057e84
commit 661540c886
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ export class AssetService {
.map((yearsAgo) => ({
yearsAgo,
// TODO move this to clients
title: `${yearsAgo} year${yearsAgo > 1 ? 's' : ''} since...`,
title: `${yearsAgo} year${yearsAgo > 1 ? 's' : ''} ago`,
assets: groups[yearsAgo].map((asset) => mapAsset(asset, { auth })),
}));
}