From d3383fb188c6b991f85505adebaaba4d298bbec5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?KMY=EF=BC=88=E9=9B=AA=E3=81=82=E3=81=99=E3=81=8B=EF=BC=89?=
 <tt@kmycode.net>
Date: Tue, 3 Dec 2024 18:58:44 +0900
Subject: [PATCH] =?UTF-8?q?Fix:=20#913=20=E3=82=B7=E3=82=A7=E3=82=A2?=
 =?UTF-8?q?=E6=8A=95=E7=A8=BF=E3=83=9A=E3=83=BC=E3=82=B8=E3=81=A7=E3=82=B5?=
 =?UTF-8?q?=E3=83=BC=E3=82=AF=E3=83=AB=E9=81=B8=E6=8A=9E=E3=81=8C=E3=81=A7?=
 =?UTF-8?q?=E3=81=8D=E3=81=AA=E3=81=84=E5=95=8F=E9=A1=8C=20(#925)=20(#927)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 app/javascript/mastodon/containers/compose_container.jsx | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app/javascript/mastodon/containers/compose_container.jsx b/app/javascript/mastodon/containers/compose_container.jsx
index 171f14d3b2..788c654316 100644
--- a/app/javascript/mastodon/containers/compose_container.jsx
+++ b/app/javascript/mastodon/containers/compose_container.jsx
@@ -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';
@@ -13,6 +14,7 @@ if (initialState) {
 }
 
 store.dispatch(fetchCustomEmojis());
+store.dispatch(fetchCircles());
 
 const ComposeContainer = () => (
   <IntlProvider>