chore: tidy

This commit is contained in:
cha0s 2020-06-21 02:08:14 -05:00
parent 61dac8ddfb
commit 82470b9747

View File

@ -36,13 +36,7 @@ const Literal = ({
.map((tierOption) => <option key={tierOption}>{tierOption}</option>)
}
</select>
{
(() => {
return Component
? <Component value={value.value} />
: null;
})()
}
{Component ? <Component value={value.value} /> : null}
</div>
);
};