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 16eb5a9 commit 2275bbfCopy full SHA for 2275bbf
client/src/config.js
@@ -37,7 +37,4 @@ export default {
37
clientId: process.env.REACT_APP_AUTH0_CLIENTID,
38
audience: process.env.REACT_APP_AUTH0_AUDIENCE,
39
},
40
-
41
- REACT_APP_ATTRIBUTE_ID_LOCATION:
42
- process.env.REACT_APP_ATTRIBUTE_ID_LOCATION || "location",
43
};
client/src/pages/Search/Global.jsx
@@ -116,7 +116,7 @@ export default function SearchGlobal({ keyword }) {
116
group: "Company attributes",
117
active: false,
118
119
- if (companyAttr.name === config.REACT_APP_ATTRIBUTE_ID_LOCATION) {
+ if (companyAttr.name === config.STANDARD_USER_ATTRIBUTES.location) {
120
filtersWithCompanyAttrs[FILTERS.LOCATIONS].id = companyAttr.id;
121
}
122
});
0 commit comments