Skip to content

Commit

Permalink
check for UNAVAILABLE status
Browse files Browse the repository at this point in the history
  • Loading branch information
perunt committed Nov 27, 2024
1 parent ca50ba8 commit e664daf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/iou/request/MoneyRequestParticipantsSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ function MoneyRequestParticipantsSelector({
useEffect(() => {
getContactPermission().then((status) => {
setContactPermissionState(status);
if (status !== RESULTS.BLOCKED) {
if (status !== RESULTS.BLOCKED && status !== RESULTS.UNAVAILABLE) {
setSoftPermissionModalVisible(true);
}
});
Expand Down

0 comments on commit e664daf

Please sign in to comment.