From 2160bb9dde35a383a8e99262ea5528709b0ad164 Mon Sep 17 00:00:00 2001 From: Netanel Avraham Date: Sun, 21 Apr 2024 14:23:35 +0300 Subject: [PATCH] Tweak: Update AI Context promotion with direct link for site settings [AI-833] (#25799) --- .../assets/js/editor/components/voice-promotion-alert.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/ai/assets/js/editor/components/voice-promotion-alert.js b/modules/ai/assets/js/editor/components/voice-promotion-alert.js index df4158793f8..e42a6384591 100644 --- a/modules/ai/assets/js/editor/components/voice-promotion-alert.js +++ b/modules/ai/assets/js/editor/components/voice-promotion-alert.js @@ -1,3 +1,4 @@ +/* eslint-disable jsx-a11y/anchor-is-valid */ import React from 'react'; import { Box, Alert } from '@elementor/ui'; import BulbIcon from '../icons/bulb-icon'; @@ -11,9 +12,11 @@ export const VoicePromotionAlert = ( props ) => { return ( - } onClose={ markAsViewed } - > - { __( 'Get improved results from AI by adding some personal context. Go to Site Settings > AI Context to get started.' ) } + } onClose={ markAsViewed }> + { __( 'Get improved results from AI by adding personal context.' ) } + + { __( 'Let’s do it' ) } + );