From 1bdbc71f6de0a94d2e477323da781b2d9fd59782 Mon Sep 17 00:00:00 2001 From: Pavel Dohnal Date: Tue, 17 Sep 2019 10:40:52 +0200 Subject: [PATCH] Move step layout to own folder [MAILPOET-2142] --- assets/js/src/wizard/{steps => layout}/step_layout.jsx | 0 assets/js/src/wizard/welcome_wizard_controller.jsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename assets/js/src/wizard/{steps => layout}/step_layout.jsx (100%) diff --git a/assets/js/src/wizard/steps/step_layout.jsx b/assets/js/src/wizard/layout/step_layout.jsx similarity index 100% rename from assets/js/src/wizard/steps/step_layout.jsx rename to assets/js/src/wizard/layout/step_layout.jsx diff --git a/assets/js/src/wizard/welcome_wizard_controller.jsx b/assets/js/src/wizard/welcome_wizard_controller.jsx index a434c15551..dc3cee916d 100644 --- a/assets/js/src/wizard/welcome_wizard_controller.jsx +++ b/assets/js/src/wizard/welcome_wizard_controller.jsx @@ -8,7 +8,7 @@ import WelcomeWizardEmailCourseStep from './steps/email_course_step.jsx'; import WelcomeWizardUsageTrackingStep from './steps/usage_tracking_step.jsx'; import WelcomeWizardWooCommerceStep from './steps/woo_commerce_step.jsx'; import WelcomeWizardPitchMSSStep from './steps/pitch_mss_step.jsx'; -import WelcomeWizardStepLayout from './steps/step_layout.jsx'; +import WelcomeWizardStepLayout from './layout/step_layout.jsx'; import CreateSenderSettings from './create_sender_settings.jsx'; import { getStepsCount, redirectToNextStep, mapStepNumberToStepName } from './steps_numbers.jsx';