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