Fix wasteful request to /api/v1/custom_emojis when not logged in (#22326)

lolsob-rspec
Claire 2022-12-15 14:07:34 +01:00 committed by GitHub
parent 2d3b9084db
commit 76d3dc633f
1 changed files with 3 additions and 1 deletions

View File

@ -23,7 +23,9 @@ export const store = configureStore();
const hydrateAction = hydrateStore(initialState);
store.dispatch(hydrateAction);
store.dispatch(fetchCustomEmojis());
if (initialState.meta.me) {
store.dispatch(fetchCustomEmojis());
}
const createIdentityContext = state => ({
signedIn: !!state.meta.me,