We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b65a95f + c119f31 commit aba9349Copy full SHA for aba9349
src/components/HomePage/URLSearchParamsParser.js
@@ -33,8 +33,8 @@ const URLSearchParamsParser = ({ showSearchResults }) => {
33
jobMaxDuration: queryParams.jobMaxDuration,
34
jobMinDuration: queryParams.jobMinDuration,
35
jobType: queryParams.jobType,
36
- fields: ensureArray(queryParams.fields),
37
- technologies: ensureArray(queryParams.technologies),
+ fields: ensureArray(queryParams.fields ?? []),
+ technologies: ensureArray(queryParams.technologies ?? []),
38
});
39
40
// we specifically want this to only run once to avoid infinite re-renders
0 commit comments