refactor: type improvements that doesn't modify functionality (#17970)
This commit is contained in:
parent
53efb2bad5
commit
4c99e9dc73
39 changed files with 69 additions and 63 deletions
|
|
@ -78,7 +78,7 @@ export const generateFormValue = (value: Record<string, any>, formSchemas: { var
|
|||
}
|
||||
|
||||
export const getPlainValue = (value: Record<string, any>) => {
|
||||
const plainValue = { ...value } as any
|
||||
const plainValue = { ...value }
|
||||
Object.keys(plainValue).forEach((key) => {
|
||||
plainValue[key] = value[key].value
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue