Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 6a4bd96

Browse files
Merge pull request #144 from topcoder-platform/hotfix/patch-1.5.3.1-dev
[DEV] Patch 1.5.3.1
2 parents 2a2cce4 + 82126e8 commit 6a4bd96

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,5 @@ dist
103103
# TernJS port file
104104
.tern-port
105105

106-
# mac os cache files
107-
.DS_Store
106+
# macOS cache files
107+
.DS_Store

config/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module.exports = (() => {
44
const env = process.env.APPENV || "dev";
55

6-
console.info(`APPENV: "${env}"`);
6+
console.log(`APPENV: "${env}"`);
77

88
// for security reason don't let to require any arbitrary file defined in process.env
99
if (["prod", "dev"].indexOf(env) < 0) {

src/constants/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ export const CANDIDATE_STATUS = {
100100
SHORTLIST: "shortlist",
101101
REJECTED: "rejected",
102102
INTERVIEW: "interview",
103+
TOPCODER_REJECTED: "topcoder-rejected",
103104
};
104105

105106
/**
@@ -131,7 +132,7 @@ export const CANDIDATE_STATUS_FILTERS = [
131132
key: CANDIDATE_STATUS_FILTER_KEY.NOT_INTERESTED,
132133
buttonText: "Not Interested",
133134
title: "Not Interested Candidates",
134-
statuses: [CANDIDATE_STATUS.REJECTED],
135+
statuses: [CANDIDATE_STATUS.REJECTED, CANDIDATE_STATUS.TOPCODER_REJECTED],
135136
},
136137
];
137138

0 commit comments

Comments
 (0)