Fix a DOM error in console

This commit is contained in:
James Grugett 2022-07-19 16:57:32 -05:00
parent 6d3490cd68
commit 6124ea01f6

View File

@ -76,11 +76,13 @@ export function LimitOrderTable(props: {
return (
<table className="table-compact table w-full rounded text-gray-500">
<thead>
<tr>
{!isYou && <th></th>}
<th>Outcome</th>
<th>{isPseudoNumeric ? 'Value' : 'Prob'}</th>
<th>Amount</th>
{isYou && <th></th>}
</tr>
</thead>
<tbody>
{limitBets.map((bet) => (