We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a406dfb + d742350 commit 20daf8dCopy full SHA for 20daf8d
package.json
@@ -31,7 +31,7 @@
31
"lint:js": "./node_modules/.bin/eslint --ext .js,.jsx .",
32
"test": "npm run lint && npm run jest"
33
},
34
- "version": "1.2.8",
+ "version": "1.2.9",
35
"dependencies": {
36
"auth0-js": "^6.8.4",
37
"config": "^3.2.0",
src/services/lookup.js
@@ -113,7 +113,7 @@ class LookupService {
113
*/
114
async getReviewTypes() {
115
if (typeof this.private.tokenV3 !== 'undefined') {
116
- const res = await this.private.apiV5.get('/reviewTypes');
+ const res = await this.private.apiV5.get('/reviewTypes?isActive=true&perPage=100');
117
const jsonResult = await res.json();
118
return jsonResult;
119
}
0 commit comments