fix: nulls

This commit is contained in:
cha0s 2021-01-30 20:25:10 -06:00
parent ed14199918
commit 2aa31e0405

View File

@ -25,7 +25,7 @@ const Vector = ({
],
);
}}
value={value[0]}
value={value[0] || 0}
/>
</label>
<label>
@ -41,7 +41,7 @@ const Vector = ({
],
);
}}
value={value[1]}
value={value[1] || 0}
/>
</label>
</div>