@@ -44,10 +44,8 @@ function Navbar(props: Props) {
4444 type RespondOptionKey = 'emergencies' | 'early-warning' | 'dref-process' | 'surge' ;
4545 const [ activeRespondOption , setActiveRespondOption ] = useState < RespondOptionKey > ( 'emergencies' ) ;
4646
47- // TODO: unhide operational learning
48- // type LearnOptionKey = 'tools' | 'resources' | 'operational-learning';
49- type LearnOptionKey = 'tools' | 'resources' ;
50- const [ activeLearnOption , setActiveLearnOption ] = useState < LearnOptionKey > ( 'tools' ) ;
47+ type LearnOptionKey = 'tools' | 'resources' | 'operational-learning' ;
48+ const [ activeLearnOption , setActiveLearnOption ] = useState < LearnOptionKey > ( 'operational-learning' ) ;
5149
5250 return (
5351 < nav className = { _cs ( styles . navbar , className ) } >
@@ -416,14 +414,12 @@ function Navbar(props: Props) {
416414 className = { styles . optionList }
417415 contentClassName = { styles . optionListContent }
418416 >
419- { /* TODO: unhide operational learning
420417 < Tab
421418 name = "operational-learning"
422419 className = { styles . option }
423420 >
424421 { strings . userMenuOperationalLearning }
425422 </ Tab >
426- */ }
427423 < Tab
428424 name = "tools"
429425 className = { styles . option }
@@ -448,7 +444,6 @@ function Navbar(props: Props) {
448444 </ DropdownMenuItem >
449445 </ TabList >
450446 < div className = { styles . optionBorder } />
451- { /* TODO: unhide operational learning
452447 < TabPanel
453448 name = "operational-learning"
454449 className = { styles . optionDetail }
@@ -464,7 +459,6 @@ function Navbar(props: Props) {
464459 { strings . userMenuOperationalLearningDescription }
465460 </ div >
466461 </ TabPanel >
467- */ }
468462 < TabPanel
469463 name = "tools"
470464 className = { styles . optionDetail }
0 commit comments