Fix a DOM error in console
This commit is contained in:
parent
6d3490cd68
commit
6124ea01f6
|
@ -76,11 +76,13 @@ export function LimitOrderTable(props: {
|
|||
return (
|
||||
<table className="table-compact table w-full rounded text-gray-500">
|
||||
<thead>
|
||||
{!isYou && <th></th>}
|
||||
<th>Outcome</th>
|
||||
<th>{isPseudoNumeric ? 'Value' : 'Prob'}</th>
|
||||
<th>Amount</th>
|
||||
{isYou && <th></th>}
|
||||
<tr>
|
||||
{!isYou && <th></th>}
|
||||
<th>Outcome</th>
|
||||
<th>{isPseudoNumeric ? 'Value' : 'Prob'}</th>
|
||||
<th>Amount</th>
|
||||
{isYou && <th></th>}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{limitBets.map((bet) => (
|
||||
|
|
Loading…
Reference in New Issue
Block a user