From 3d544cf0619d1c2cfb03642d6078ebbb1c73d7d3 Mon Sep 17 00:00:00 2001 From: Ildar Iskhakov Date: Mon, 20 Feb 2023 19:58:02 +0100 Subject: [PATCH] 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 --- .../parts/tabs/PhoneVerification/PhoneVerification.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana-plugin/src/containers/UserSettings/parts/tabs/PhoneVerification/PhoneVerification.tsx b/grafana-plugin/src/containers/UserSettings/parts/tabs/PhoneVerification/PhoneVerification.tsx index 2a02565e..4063ba64 100644 --- a/grafana-plugin/src/containers/UserSettings/parts/tabs/PhoneVerification/PhoneVerification.tsx +++ b/grafana-plugin/src/containers/UserSettings/parts/tabs/PhoneVerification/PhoneVerification.tsx @@ -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.' ); }); }