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