Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zheng.shen committed Dec 24, 2024
1 parent e694c4a commit 85f3392
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const People = ({ haveFreezed, people, onOpenPeople, onRename, onFreezed, onUnFr
return Array.isArray(people._photo_links) ? people._photo_links.length : 0;
}, [people._photo_links]);

const name = useMemo(() => people._name || people._is_someone ? gettext('Person image') : gettext('Unknown photos'), [people]);
const name = useMemo(() => people._name || people._is_someone ? gettext('Person image') : gettext('Unknown people'), [people]);

const [renaming, setRenaming] = useState(false);
const [active, setActive] = useState(false);
Expand Down

0 comments on commit 85f3392

Please sign in to comment.