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.
1 parent 2a458b5 commit dedd455Copy full SHA for dedd455
manager-dashboard/app/views/NewTutorial/index.tsx
@@ -69,6 +69,7 @@ import {
69
PROJECT_TYPE_COMPLETENESS,
70
PROJECT_TYPE_CHANGE_DETECTION,
71
PROJECT_TYPE_FOOTPRINT,
72
+ PROJECT_TYPE_STREET,
73
ProjectType,
74
projectTypeLabelMap,
75
} from '#utils/common';
@@ -761,7 +762,10 @@ function NewTutorial(props: Props) {
761
762
autoFocus
763
/>
764
</InputSection>
- {value.projectType === PROJECT_TYPE_FOOTPRINT && (
765
+ {(
766
+ value.projectType === PROJECT_TYPE_FOOTPRINT
767
+ || value.projectType === PROJECT_TYPE_STREET
768
+ ) && (
769
<InputSection
770
heading="Custom Options"
771
actions={(
0 commit comments