diff --git a/app/soapbox/reducers/notifications.js b/app/soapbox/reducers/notifications.js index 884e7f6f6..b0f73ed5d 100644 --- a/app/soapbox/reducers/notifications.js +++ b/app/soapbox/reducers/notifications.js @@ -155,12 +155,16 @@ export default function notifications(state = initialState, action) { return state.set('lastRead', action.lastRead); case TIMELINE_DELETE: return deleteByStatus(state, action.id); - case TIMELINE_DISCONNECT: - // This is kind of a hack - `null` renders a LoadGap in the component - // https://github.com/tootsuite/mastodon/pull/6886 - return action.timeline === 'home' ? - state.update('items', items => items.first() ? ImmutableOrderedSet([null]).union(items) : items) : - state; + + // Disable for now + // https://gitlab.com/soapbox-pub/soapbox-fe/-/issues/432 + // + // case TIMELINE_DISCONNECT: + // // This is kind of a hack - `null` renders a LoadGap in the component + // // https://github.com/tootsuite/mastodon/pull/6886 + // return action.timeline === 'home' ? + // state.update('items', items => items.first() ? ImmutableOrderedSet([null]).union(items) : items) : + // state; default: return state; }