diff --git a/src/components/common/messaging/MessageBox.tsx b/src/components/common/messaging/MessageBox.tsx
index 70ee0633..e2264c0d 100644
--- a/src/components/common/messaging/MessageBox.tsx
+++ b/src/components/common/messaging/MessageBox.tsx
@@ -257,25 +257,27 @@ export default observer(({ channel }: Props) => {
);
}
- console.log(channel)
- if (!channel.havePermission("SendMessage") && channel.recipient?.relationship == "Blocked" || channel.recipient?.relationship == "BlockedOther"){
- return (
-
-
-
-
-
-
-
-
-
-
-
-
- );
- }
+ console.log(channel) //|| channel.channel_type != "DirectMessage"
+ if (channel.channel_type != "SavedMessages")
+ if (!channel.havePermission("SendMessage") && channel.channel_type == "TextChannel" || channel.recipient?.relationship == "Blocked" || channel.recipient?.relationship == "BlockedOther"){
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+ }
// Push message content to draft.
const setMessage = useCallback(
(content?: string) => {