Fix: #913 シェア投稿ページでサークル選択ができない問題 (#925)

This commit is contained in:
KMY(雪あすか) 2024-12-03 17:35:43 +09:00 committed by GitHub
parent c20b098cfd
commit 46b3fa48ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,6 @@
import { Provider } from 'react-redux'; import { Provider } from 'react-redux';
import { fetchCircles } from 'mastodon/actions/circles';
import { fetchCustomEmojis } from 'mastodon/actions/custom_emojis'; import { fetchCustomEmojis } from 'mastodon/actions/custom_emojis';
import { hydrateStore } from 'mastodon/actions/store'; import { hydrateStore } from 'mastodon/actions/store';
import { Router } from 'mastodon/components/router'; import { Router } from 'mastodon/components/router';
@ -13,6 +14,7 @@ if (initialState) {
} }
store.dispatch(fetchCustomEmojis()); store.dispatch(fetchCustomEmojis());
store.dispatch(fetchCircles());
const ComposeContainer = () => ( const ComposeContainer = () => (
<IntlProvider> <IntlProvider>