Skip to content

Commit fa77730

Browse files
Merge pull request #85 from docusign/bugfix/fixed-issue-with-edit
Fixed issue with edit transaction
2 parents 9082251 + de578b4 commit fa77730

6 files changed

Lines changed: 118 additions & 85 deletions

File tree

client/package-lock.json

Lines changed: 87 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"@testing-library/jest-dom": "^6.7.0",
1010
"@testing-library/react": "^16.3.0",
1111
"@testing-library/user-event": "^14.6.1",
12-
"axios": "^1.11.0",
12+
"axios": "^1.12.0",
1313
"dotenv": "^17.2.1",
1414
"react": "^18.3.1",
1515
"react-country-region-selector": "^4.0.2",
@@ -18,15 +18,16 @@
1818
"react-scripts": "^5.0.1",
1919
"localforage": "1.10.0",
2020
"source-map-loader": "^5.0.0",
21-
"validator": "^13.15.15",
21+
"validator": "^13.15.26",
2222
"webpack-dev-server": "^5.2.2"
2323
},
2424
"overrides": {
2525
"form-data": "^3.0.4",
2626
"nth-check": "2.1.1",
2727
"minimist": "1.2.6",
2828
"resolve-url-loader": "5.0.0",
29-
"ws": "^8.18.0"
29+
"ws": "^8.18.0",
30+
"jws": "4.0.1"
3031
},
3132
"scripts": {
3233
"start": "react-scripts start",

client/src/containers/Forms/RoomContactInfoForm/RoomContactInfoForm.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,8 @@ class RoomContactInfoForm extends Component {
378378
}
379379
console.log(fieldData);
380380
try{
381-
await axios.patch(`/rooms/${this.props.roomId}`, fieldData, {withCredentials: true});
381+
const apiUrl = process.env.REACT_APP_API_URL;
382+
await axios.patch(`${apiUrl}/rooms/${this.props.roomId}`, fieldData, {withCredentials: true});
382383
// Update parent state with new info
383384
const updatedFieldData = {...this.props.fieldData };
384385
for(const key in fieldData) {

0 commit comments

Comments
 (0)