diff --git a/client/landing/stepper/declarative-flow/internals/steps-repository/importer-migrate-message/index.tsx b/client/landing/stepper/declarative-flow/internals/steps-repository/importer-migrate-message/index.tsx index 094d9358f05095..4af111f6387800 100644 --- a/client/landing/stepper/declarative-flow/internals/steps-repository/importer-migrate-message/index.tsx +++ b/client/landing/stepper/declarative-flow/internals/steps-repository/importer-migrate-message/index.tsx @@ -1,4 +1,3 @@ -import { Button } from '@automattic/components'; import { useLocale } from '@automattic/i18n-utils'; import { StepContainer } from '@automattic/onboarding'; import { createInterpolateElement } from '@wordpress/element'; @@ -15,6 +14,8 @@ import { recordTracksEvent } from 'calypso/lib/analytics/tracks'; import { UserData } from 'calypso/lib/user/user'; import { useSelector } from 'calypso/state'; import { getCurrentUser } from 'calypso/state/current-user/selectors'; +import FlowCard from '../components/flow-card'; +import { redirect } from '../import/util'; import { useSubmitMigrationTicket } from './hooks/use-submit-migration-ticket'; const ImporterMigrateMessage: Step = () => { @@ -93,12 +94,20 @@ const ImporterMigrateMessage: Step = () => { { __( `We'll help you with the domain changes after the migration is completed.` ) }
- - + redirect( `/home/${ siteSlug }` ) } + /> + redirect( '/support' ) } + />
} diff --git a/client/landing/stepper/declarative-flow/internals/steps-repository/importer-migrate-message/style.scss b/client/landing/stepper/declarative-flow/internals/steps-repository/importer-migrate-message/style.scss index 465d43de99413a..7a8af02171adf7 100644 --- a/client/landing/stepper/declarative-flow/internals/steps-repository/importer-migrate-message/style.scss +++ b/client/landing/stepper/declarative-flow/internals/steps-repository/importer-migrate-message/style.scss @@ -57,7 +57,7 @@ .migration-message__actions { display: flex; - gap: 2em; - margin-top: 3em; /* could also work with padding-top */ + justify-content: center; + margin: 0 -10px; } }