We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b99562 + 2c14bdf commit f6384fdCopy full SHA for f6384fd
src/pages/ExpressWizard/index.tsx
@@ -56,6 +56,7 @@ import styled from 'styled-components';
56
import * as Yup from 'yup';
57
import { useLocalizeRoute } from 'src/hooks/useLocalizedRoute';
58
import { useNavigate, useNavigationType } from 'react-router-dom';
59
+import { isDev } from 'src/common/isDevEnvironment';
60
import DiscardChangesModal from './ActionModals/DiscardChangesModal';
61
import { getPlatform } from './getPlatform';
62
import {
@@ -305,6 +306,7 @@ export const ExpressWizardContainer = () => {
305
306
},
307
user: userData,
308
workspace: activeWorkspace,
309
+ envirnment: isDev() ? 'staging' : 'production',
310
}),
311
});
312
};
0 commit comments