diff --git a/app/dawn-hub/Views/OnboardingView/OnboardingConstants.js b/app/dawn-hub/Views/OnboardingView/OnboardingConstants.js index 71eb1e4cb..fc2b2be67 100644 --- a/app/dawn-hub/Views/OnboardingView/OnboardingConstants.js +++ b/app/dawn-hub/Views/OnboardingView/OnboardingConstants.js @@ -22,6 +22,9 @@ export const SUCCESS = '5'; // Setup Step Constants +// Step 0 +export const SETUP_STARTED = '1'; + // Step 1 export const SIGN_IN_SUCCESSFUL = '1'; export const CREATE_ACCOUNT_SUCCESSFUL = '2'; diff --git a/app/dawn-hub/Views/OnboardingViews/Step0_WelcomeView/WelcomeView.jsx b/app/dawn-hub/Views/OnboardingViews/Step0_WelcomeView/WelcomeView.jsx index 1abfe815e..897a2a95b 100644 --- a/app/dawn-hub/Views/OnboardingViews/Step0_WelcomeView/WelcomeView.jsx +++ b/app/dawn-hub/Views/OnboardingViews/Step0_WelcomeView/WelcomeView.jsx @@ -14,7 +14,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { NavLink } from 'react-router-dom'; -import { WELCOME } from '../../OnboardingView/OnboardingConstants'; +import { ONBOARDING, WELCOME, SETUP_STARTED } from '../../OnboardingView/OnboardingConstants'; /** * A Functional React component for rendering the Browser Welcome View @@ -29,7 +29,7 @@ const WelcomeView = (props) => {
-