diff --git a/src/components/common/messaging/MessageBox.tsx b/src/components/common/messaging/MessageBox.tsx
index 1243cbb397ece98953cf8c89f1cc427f0b443180..d6cad740a97c5381077dd4de592e234c769d2abd 100644
--- a/src/components/common/messaging/MessageBox.tsx
+++ b/src/components/common/messaging/MessageBox.tsx
@@ -20,8 +20,7 @@ import {
     SMOOTH_SCROLL_ON_RECEIVE,
 } from "../../../lib/renderer/Singleton";
 
-import { dispatch } from "../../../redux";
-import { connectState } from "../../../redux/connector";
+import { dispatch, getState } from "../../../redux";
 import { Reply } from "../../../redux/reducers/queue";
 
 import { SoundContext } from "../../../context/Settings";
@@ -44,7 +43,6 @@ import ReplyBar from "./bars/ReplyBar";
 
 type Props = {
     channel: Channel;
-    draft?: string;
 };
 
 export type UploadState =
@@ -94,9 +92,11 @@ const Action = styled.div`
 `;
 
 // ! FIXME: add to app config and load from app config
-export const CAN_UPLOAD_AT_ONCE = 5;
+export const CAN_UPLOAD_AT_ONCE = 4;
+
+export default function MessageBox({ channel }: Props) {
+    const [draft, setDraft] = useState(getState().drafts[channel._id] ?? '');
 
-function MessageBox({ channel, draft }: Props) {
     const [uploadState, setUploadState] = useState<UploadState>({
         type: "none",
     });
@@ -124,6 +124,8 @@ function MessageBox({ channel, draft }: Props) {
     }
 
     function setMessage(content?: string) {
+        setDraft(content ?? '');
+        
         if (content) {
             dispatch({
                 type: "SET_DRAFT",
@@ -486,13 +488,3 @@ function MessageBox({ channel, draft }: Props) {
         </>
     );
 }
-
-export default connectState<Omit<Props, "dispatch" | "draft">>(
-    MessageBox,
-    (state, { channel }) => {
-        return {
-            draft: state.drafts[channel._id],
-        };
-    },
-    true,
-);
diff --git a/src/redux/index.ts b/src/redux/index.ts
index 24db71bf22f05507080c3393168819d67735749e..171acfb955496338d9c2a5014155779ccc94c681 100644
--- a/src/redux/index.ts
+++ b/src/redux/index.ts
@@ -82,3 +82,7 @@ store.subscribe(() => {
 export function dispatch(action: Action) {
     store.dispatch(action);
 }
+
+export function getState(): State {
+    return store.getState();
+}