Update phone verification error message (#1350)

# What this PR does

## Which issue(s) this PR fixes

## Checklist

- [ ] Tests updated
- [ ] Documentation added
- [ ] `CHANGELOG.md` updated

---------

Co-authored-by: Vadim Stepanov <vadimkerr@gmail.com>
This commit is contained in:
Ildar Iskhakov 2023-02-20 19:58:02 +01:00 committed by GitHub
parent fe97f63e06
commit 3d544cf061
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -116,7 +116,7 @@ const PhoneVerification = observer((props: PhoneVerificationProps) => {
})
.catch(() => {
openErrorNotification(
"Can't send SMS code. Please try other phone number formats. Don't forget the country code!"
'Grafana OnCall is unable to verify your phone number due to incorrect number or verification service being unavailable.'
);
});
}