Skip to content

Commit

Permalink
fix: Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGT96 committed Oct 18, 2024
1 parent 737f435 commit 67aefdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,5 @@
},
"_moduleAliases": {
"@": "./dist"
},
"volta": {
"node": "20.18.0"
}
}
2 changes: 2 additions & 0 deletions src/libraries/formDataHandling/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ export const getFromFields = (
acc[key] = fields[key].isArray
? JSON.parse(fields[key][fieldAddress])
: fields[key][fieldAddress];
} else {
acc[key] = fields[key][fieldAddress];
}
return acc;
}, {});
Expand Down

0 comments on commit 67aefdd

Please sign in to comment.