Skip to content

Commit

Permalink
fix(partner): ui - show Tag and api: queryParams
Browse files Browse the repository at this point in the history
  • Loading branch information
whalekiller03 committed Jan 2, 2024
1 parent ca536a8 commit 97379a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Partner/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ const keySelections = {
q: 'PASS_STRING',
};

const eduObj = createObjFromArrary(EDUCATION_STEP);
const roleObj = createObjFromArrary(ROLE);
const eduObj = createObjFromArrary(EDUCATION_STEP, 'label', 'key');
const roleObj = createObjFromArrary(ROLE, 'label', 'key');

function Partner() {
const dispatch = useDispatch();
Expand Down Expand Up @@ -102,7 +102,7 @@ function Partner() {
<StyledContent>
<SearchParamsList
paramsKey={['area', 'role', 'edu', 'tag', 'q']}
keySelections={keySelections}
paramsKeyOptions={keySelections}
/>
<PartnerList />
</StyledContent>
Expand Down

0 comments on commit 97379a9

Please sign in to comment.