From 05d7f496be4f4c5a324fad4a200a386a0a6f41ed Mon Sep 17 00:00:00 2001 From: Cagdas U Date: Fri, 30 Apr 2021 20:57:57 +0300 Subject: [PATCH] fix(interview-scheduler): remove externalId assignment to userId Addresses https://github.com/topcoder-platform/taas-app/issues/179 --- src/routes/JobForm/index.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/routes/JobForm/index.jsx b/src/routes/JobForm/index.jsx index 880f22e2..8f34d31f 100644 --- a/src/routes/JobForm/index.jsx +++ b/src/routes/JobForm/index.jsx @@ -64,8 +64,6 @@ const JobForm = ({ teamId, jobId }) => { // as we are using `PUT` method (not `PATCH`) we have send ALL the fields // fields which we don't send would become `null` otherwise const getRequestData = (values) => { - const externalId = _.get(store.getState(), "authUser.userId"); - values.externalId = externalId && _.toString(externalId); return _.pick(values, [ "projectId", "externalId",