From 763b5b757f7ceea69080df63166dd669f8b91b39 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 26 Dec 2017 11:41:14 +0000 Subject: [PATCH] Remove redundant filtering of shared journals. This is already done in sync gate. --- src/Pim/index.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Pim/index.tsx b/src/Pim/index.tsx index 7dc6f7b..329acef 100644 --- a/src/Pim/index.tsx +++ b/src/Pim/index.tsx @@ -48,12 +48,6 @@ const itemsSelector = createSelector( syncInfo.forEach( (syncJournal) => { const syncEntries = syncJournal.entries; - const journal = syncJournal.journal; - - // FIXME: Skip shared journals for now - if (journal.key) { - return; - } const collectionInfo = syncJournal.collection;