From b23c77d068a1b5d69259685c53439382ad4461fc Mon Sep 17 00:00:00 2001 From: vikasrohit Date: Thu, 25 Feb 2021 09:12:16 +0530 Subject: [PATCH] Fixing env variable reading for NDA Terms reading from constants file in src folder instead of reading from root (which only works with circle ci) We fixed it with https://github.com/appirio-tech/connect-app/pull/4290 but with refactoring after first milestone got it overridden. --- src/projects/detail/components/NDAField/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/projects/detail/components/NDAField/index.jsx b/src/projects/detail/components/NDAField/index.jsx index df0c45b8e..1f35d8d44 100644 --- a/src/projects/detail/components/NDAField/index.jsx +++ b/src/projects/detail/components/NDAField/index.jsx @@ -2,7 +2,7 @@ import React, { PropTypes } from 'react' import { HOC as hoc } from 'formsy-react' import _ from 'lodash' import RadioGroup from 'appirio-tech-react-components/components/Formsy/RadioGroup' -import { DEFAULT_NDA_UUID } from '../../../../../config/constants' +import { DEFAULT_NDA_UUID } from '../../../../config/constants' class NDAField extends React.Component { constructor(props) {