Recent trade => recent

This commit is contained in:
James Grugett 2022-04-15 17:55:26 -05:00
parent 87b54ff92e
commit 102e22e111

View File

@ -166,9 +166,9 @@ export function BetsList(props: { user: User }) {
value={sort}
onChange={(e) => setSort(e.target.value as BetSort)}
>
<option value="newest">Recent</option>
<option value="value">Value</option>
<option value="profit">Profit</option>
<option value="newest">Recent trade</option>
<option value="closeTime">Close date</option>
</select>
</Row>