File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
static/app/components/searchQueryBuilder Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -58,13 +58,13 @@ export function AskSeerOption<T>({state}: {state: ComboBoxState<T>}) {
5858 < IconSeer />
5959 < Tooltip
6060 title = { tct (
61- 'The assistant requires Generative AI which is subject to our [dataProcessingPolicy:data processing policy ].' ,
61+ 'Powered by generative AI. Learn more about our [dataProcessingPolicy:AI privacy principles ].' ,
6262 {
6363 dataProcessingPolicy : (
6464 < ExternalLink
6565 onMouseOver = { ( ) => setOptionDisableOverride ( true ) }
6666 onMouseOut = { ( ) => setOptionDisableOverride ( false ) }
67- href = "https://docs.sentry.io/product/security/ ai-ml-policy/#use-of-identifying-data-for-generative-ai-features "
67+ href = "https://docs.sentry.io/product/ai-in-sentry/ai-privacy-and-security/ "
6868 />
6969 ) ,
7070 }
Original file line number Diff line number Diff line change @@ -4875,18 +4875,16 @@ describe('SearchQueryBuilder', () => {
48754875
48764876 await userEvent . hover ( askSeerText ) ;
48774877
4878- const tooltipTitle = await screen . findByText (
4879- / T h e a s s i s t a n t r e q u i r e s G e n e r a t i v e A I /
4880- ) ;
4878+ const tooltipTitle = await screen . findByText ( / P o w e r e d b y g e n e r a t i v e A I / ) ;
48814879 expect ( tooltipTitle ) . toBeInTheDocument ( ) ;
48824880 expect ( tooltipTitle ) . toBeVisible ( ) ;
48834881
4884- const tooltipLink = screen . getByText ( / d a t a p r o c e s s i n g p o l i c y / ) ;
4882+ const tooltipLink = screen . getByText ( / A I p r i v a c y p r i n c i p l e s / ) ;
48854883 expect ( tooltipLink ) . toBeInTheDocument ( ) ;
48864884 expect ( tooltipLink ) . toBeVisible ( ) ;
48874885 expect ( tooltipLink ) . toHaveAttribute (
48884886 'href' ,
4889- 'https://docs.sentry.io/product/security/ ai-ml-policy/#use-of-identifying-data-for-generative-ai-features '
4887+ 'https://docs.sentry.io/product/ai-in-sentry/ai-privacy-and-security/ '
48904888 ) ;
48914889 } ) ;
48924890 } ) ;
You can’t perform that action at this time.
0 commit comments