Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

[PAY-1563] Fix loading into a chat from a push notification #3699

Merged
merged 1 commit into from
Jul 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/common/src/store/pages/chat/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down