[CYS] Temporarily remove the survey button (#41781)

This commit is contained in:
Patricia Hillebrandt 2023-12-07 09:16:15 -03:00 committed by GitHub
commit d9ca827083
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View File

@ -96,6 +96,7 @@ export const Layout = () => {
hasCompleteSurvey={
!! context?.transitionalScreen?.hasCompleteSurvey
}
aiOnline={ !! context?.aiOnline }
/>
</EntityProvider>
</EntityProvider>

View File

@ -39,12 +39,14 @@ export const Transitional = ( {
hasCompleteSurvey,
isSurveyOpen,
setSurveyOpen,
aiOnline,
}: {
editor: React.ReactNode;
sendEvent: ( event: events ) => void;
hasCompleteSurvey: boolean;
isSurveyOpen: boolean;
setSurveyOpen: ( isOpen: boolean ) => void;
aiOnline: boolean;
} ) => {
const homeUrl: string = getSetting( 'homeUrl', '' );
const isEditorLoading = useIsSiteEditorLoading();
@ -54,7 +56,7 @@ export const Transitional = ( {
return (
<div className="woocommerce-customize-store__transitional">
{ isSurveyOpen && (
{ isSurveyOpen && aiOnline && (
<Modal
title={ __( 'Share feedback', 'woocommerce' ) }
onRequestClose={ () => closeSurvey() }
@ -95,7 +97,7 @@ export const Transitional = ( {
<div className="woocommerce-customize-store__transitional-main-actions">
<WooCYSSecondaryButtonSlot />
{ ! hasCompleteSurvey && (
{ ! hasCompleteSurvey && aiOnline && (
<Button
className="woocommerce-customize-store__transitional-preview-button"
variant="secondary"

View File

@ -0,0 +1,4 @@
Significance: minor
Type: update
Hide the "Share feedback" button from the CYS preview step when AI is not available.