[Glitch] Add onboarding prompt when home feed too slow in web UI

Port 00ec43914a to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Eugen Rochko
2023-06-22 22:48:40 +01:00
committed by Claire
parent 7d160d2272
commit 6fb34258a4
12 changed files with 133 additions and 37 deletions

View File

@ -137,3 +137,7 @@ export const getAccountHidden = createSelector([
], (hidden, followingOrRequested, isSelf) => {
return hidden && !(isSelf || followingOrRequested);
});
export const getStatusList = createSelector([
(state, type) => state.getIn(['status_lists', type, 'items']),
], (items) => items.toList());