fix: sms receipt tx direction

This commit is contained in:
José Oliveira 2022-02-23 21:35:09 +00:00
parent c8f5e471be
commit f205f99d7f
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ const BooleanCell = ({ name }) => {
const BooleanPropertiesTable = memo(
({ title, disabled, data, elements, save, forcedEditing = false }) => {
const initialValues = R.fromPairs(
elements.map(it => [it.name, data[it.name].toString() ?? null])
elements.map(it => [it.name, data[it.name]?.toString() ?? null])
)
const schemaValidation = R.fromPairs(