Don't show error dialog with valid ACI

This commit is contained in:
Fedor Indutny 2023-08-30 21:07:54 +02:00 committed by GitHub
parent f394fd65fb
commit 67a51415d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,5 +12,5 @@ export const isSafetyNumberNotAvailable = (
return true;
}
return isAciString(contact.serviceId);
return !isAciString(contact.serviceId);
};