diff --git a/packages/common/src/store/pages/chat/selectors.ts b/packages/common/src/store/pages/chat/selectors.ts index ef902af61c..be773e66f4 100644 --- a/packages/common/src/store/pages/chat/selectors.ts +++ b/packages/common/src/store/pages/chat/selectors.ts @@ -307,8 +307,8 @@ export const getCanSendMessage = createSelector( ) => { if (!userId) { return { - canSendMessage: false, - callToAction: ChatPermissionAction.NONE + canSendMessage: true, + callToAction: ChatPermissionAction.NOT_APPLICABLE } } const isBlockee = blockees.includes(userId)