diff --git a/src/Collections/CollectionChangeEntries.tsx b/src/Collections/CollectionChangeEntries.tsx index 39c636a..79edcc6 100644 --- a/src/Collections/CollectionChangeEntries.tsx +++ b/src/Collections/CollectionChangeEntries.tsx @@ -31,6 +31,7 @@ export interface CachedItem { content: string; } +// FIXME: use the ones used by e.g. Contacts/Main so ew share the cache async function decryptItems(items: Map>) { const entries: Map> = new Map(); for (const [colUid, col] of items.entries()) { @@ -52,7 +53,6 @@ interface PropsType { collection: CachedCollection; } -// FIXME: use the ones used by e.g. Contacts/Main so ew share the cache export default function CollectionChangeEntries(props: PropsType) { const [entries, setEntries] = React.useState>(); const [dialog, setDialog] = React.useState();