diff --git a/src/SideMenu/SideMenuJournals.tsx b/src/SideMenu/SideMenuJournals.tsx index 2b50956..0a34431 100644 --- a/src/SideMenu/SideMenuJournals.tsx +++ b/src/SideMenu/SideMenuJournals.tsx @@ -22,7 +22,7 @@ class SideMenuJournals extends React.PureComponent { const journalMap = this.props.journals.reduce( (ret, journal) => { // FIXME: Skip shared journals for now - if (journal.key && (journal.owner !== this.props.etesync.credentials.email)) { + if (journal.key) { const key = 'UNSUPPORTED'; ret[key] = ret[key] || []; ret[key].push( diff --git a/src/SyncGate.tsx b/src/SyncGate.tsx index 32ec5df..c9fffce 100644 --- a/src/SyncGate.tsx +++ b/src/SyncGate.tsx @@ -53,7 +53,7 @@ const syncInfoSelector = createSelector( } // FIXME: Skip shared journals for now - if (journal.key && (journal.owner !== etesync.credentials.email)) { + if (journal.key) { return ret; }