From 1268564b90bc77e90c28c4b0b60bc21089379b15 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sat, 8 Aug 2020 12:05:32 +0300 Subject: [PATCH] Move FIXME to the correct place. --- src/Collections/CollectionChangeEntries.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();