Minor component fix to show Void statements

This commit is contained in:
Ozzie Gooen 2022-07-20 09:28:32 -07:00
parent 078534f7c8
commit 590ffac552

View File

@ -200,6 +200,12 @@ export const SquiggleItem: React.FC<SquiggleItemProps> = ({
{expression.value.toDateString()}
</VariableBox>
);
case "void":
return (
<VariableBox heading="Void" showTypes={showTypes}>
{"Void"}
</VariableBox>
);
case "timeDuration": {
return (
<VariableBox heading="Time Duration" showTypes={showTypes}>