diff --git a/grafana-plugin/src/containers/MobileAppConnection/MobileAppConnection.tsx b/grafana-plugin/src/containers/MobileAppConnection/MobileAppConnection.tsx index 0bb60fd9..0f4f84db 100644 --- a/grafana-plugin/src/containers/MobileAppConnection/MobileAppConnection.tsx +++ b/grafana-plugin/src/containers/MobileAppConnection/MobileAppConnection.tsx @@ -208,14 +208,14 @@ const MobileAppConnection = observer(({ userPk }: Props) => { onClick={() => onSendTestNotification()} disabled={isAttemptingTestNotification} > - Send Test Push notification + Send Test Push @@ -229,7 +229,7 @@ const MobileAppConnection = observer(({ userPk }: Props) => { try { await userStore.sendTestPushNotification(userPk, isCritical); - openNotification('Notification was sent'); + openNotification(isCritical ? 'Push Important Notification has been sent' : 'Push Notification has been sent'); } catch (ex) { if (ex.response?.status === 429) { openWarningNotification('Too much attempts, try again later');