Skip to content

Commit

Permalink
Fix: #913 シェア投稿ページでサークル選択ができない問題
Browse files Browse the repository at this point in the history
  • Loading branch information
kmycode committed Dec 3, 2024
1 parent 69f679e commit 10ccdc5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/javascript/mastodon/containers/compose_container.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Provider } from 'react-redux';

import { fetchCircles } from 'mastodon/actions/circles';
import { fetchCustomEmojis } from 'mastodon/actions/custom_emojis';
import { hydrateStore } from 'mastodon/actions/store';
import { Router } from 'mastodon/components/router';
Expand All @@ -13,6 +14,7 @@ if (initialState) {
}

store.dispatch(fetchCustomEmojis());
store.dispatch(fetchCircles());

const ComposeContainer = () => (
<IntlProvider>
Expand Down

0 comments on commit 10ccdc5

Please sign in to comment.