Skip to content
Snippets Groups Projects
Commit e02a13f6 authored by rinsuki's avatar rinsuki Committed by Eugen Rochko
Browse files

Fix not showing custom emojis in share page emoji picker (#9970)

parent 88f35f33
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ import { IntlProvider, addLocaleData } from 'react-intl';
import { getLocale } from '../locales';
import Compose from '../features/standalone/compose';
import initialState from '../initial_state';
import { fetchCustomEmojis } from '../actions/custom_emojis';
const { localeData, messages } = getLocale();
addLocaleData(localeData);
......@@ -17,6 +18,8 @@ if (initialState) {
store.dispatch(hydrateStore(initialState));
}
store.dispatch(fetchCustomEmojis());
export default class TimelineContainer extends React.PureComponent {
static propTypes = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment