- added form fields calculation and new table calculationl tested in preview;

This commit is contained in:
Vitalii Kiiko
2025-01-24 12:16:09 +01:00
parent e99a9b2058
commit df99a3e77d
17 changed files with 152 additions and 135 deletions

3
src/helpers/removeKey.js Normal file
View File

@@ -0,0 +1,3 @@
const removeKey = (arr, key) => arr.map(({[key]: _, ...rest}) => rest);
export default removeKey;