Skip to content

Commit

Permalink
Remove space
Browse files Browse the repository at this point in the history
  • Loading branch information
AG-83 committed Aug 30, 2023
1 parent 21ef961 commit 6737a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/formcomponents/decimal/decimal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Decimal extends React.Component<Props & ValidationProps, {}> {
if (answer && Array.isArray(answer)) {
return answer.map(m => m.valueDecimal);
}
if (answer && answer.valueDecimal !== undefined && answer.valueDecimal !== null) {
if (answer && answer.valueDecimal !== undefined && answer.valueDecimal !== null) {
return answer.valueDecimal;
}
if (!item || !item.initial || item.initial.length === 0 || !item.initial[0].valueDecimal) {
Expand Down

0 comments on commit 6737a5d

Please sign in to comment.