mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
fix: a potential crash on fav list (#2716)
(cherry picked from commit 546d5764e6)
This commit is contained in:
@@ -34,7 +34,9 @@ function FavoriteMenuItem({
|
||||
const referencesToShow = useMemo(() => {
|
||||
return [
|
||||
...new Set(
|
||||
references.filter(ref => !parentIds.has(ref) && !metaMapping[ref].trash)
|
||||
references.filter(
|
||||
ref => !parentIds.has(ref) && !metaMapping[ref]?.trash
|
||||
)
|
||||
),
|
||||
];
|
||||
}, [references, parentIds, metaMapping]);
|
||||
|
||||
Reference in New Issue
Block a user