From e664dafd3ab6ff4be82ec66591f23445a7121950 Mon Sep 17 00:00:00 2001 From: Taras Perun Date: Wed, 27 Nov 2024 16:54:15 +0100 Subject: [PATCH] check for UNAVAILABLE status --- src/pages/iou/request/MoneyRequestParticipantsSelector.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/iou/request/MoneyRequestParticipantsSelector.tsx b/src/pages/iou/request/MoneyRequestParticipantsSelector.tsx index 83979a86e97b..ba75d11d3d78 100644 --- a/src/pages/iou/request/MoneyRequestParticipantsSelector.tsx +++ b/src/pages/iou/request/MoneyRequestParticipantsSelector.tsx @@ -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); } });