diff --git a/.circleci/config.yml b/.circleci/config.yml
index 0e161844..e8eac28e 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -28,7 +28,7 @@ jobs:
       - attach_workspace:
           at: .
       - run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
-      - run: npm publish
+      - run: npm publish --tag test-release
 # dont change anything
 workflows:
   version: 2
diff --git a/package.json b/package.json
index 78ff4f26..ec3b58e4 100644
--- a/package.json
+++ b/package.json
@@ -31,7 +31,7 @@
     "lint:js": "./node_modules/.bin/eslint --ext .js,.jsx .",
     "test": "npm run lint && npm run jest"
   },
-  "version": "1.2.8",
+  "version": "1000.29.8",
   "dependencies": {
     "auth0-js": "^6.8.4",
     "config": "^3.2.0",
diff --git a/src/services/lookup.js b/src/services/lookup.js
index cd2b99e7..05e915c3 100644
--- a/src/services/lookup.js
+++ b/src/services/lookup.js
@@ -113,7 +113,7 @@ class LookupService {
    */
   async getReviewTypes() {
     if (typeof this.private.tokenV3 !== 'undefined') {
-      const res = await this.private.apiV5.get('/reviewTypes');
+      const res = await this.private.apiV5.get('/reviewTypes?isActive=true&perPage=100');
       const jsonResult = await res.json();
       return jsonResult;
     }