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 64cbdff + d5df76c commit bcb0d5eCopy full SHA for bcb0d5e
apps/dsep/components/landingPage/LandingPage.tsx
@@ -72,7 +72,12 @@ const LandingPage: React.FC = () => {
72
searchPlaceholder: `Search for ${activeCard}`,
73
setSearchTerm: setSearchTerm,
74
onSearchIconClick: searchIconClickHandler,
75
- onSearchInputEnterPress: navigateToSearchResults
+ onSearchInputEnterPress:
76
+ activeCard === 'course'
77
+ ? navigateToSearchResults
78
+ : activeCard === 'jobs'
79
+ ? navigateToJob
80
+ : navigateToScholarship
81
}}
82
CardSelector={{
83
imageCardList: cardTypes.map(card => ({
0 commit comments