diff --git a/apps/hyperdrive-trading/src/ui/hyperdrive/TransactionTable/TransactionsTable.tsx b/apps/hyperdrive-trading/src/ui/hyperdrive/TransactionTable/TransactionsTable.tsx index 9805e35de..6039b9eb4 100644 --- a/apps/hyperdrive-trading/src/ui/hyperdrive/TransactionTable/TransactionsTable.tsx +++ b/apps/hyperdrive-trading/src/ui/hyperdrive/TransactionTable/TransactionsTable.tsx @@ -33,10 +33,10 @@ const getColumns = (hyperdrive: Hyperdrive) => [ if (filterValue === "All") { return true; } - if (filterValue === "Long") { + if (filterValue === "Longs") { return ["Open Long", "Close Long"].includes(type); } - if (filterValue === "Short") { + if (filterValue === "Shorts") { return ["Open Short", "Close Short"].includes(type); } if (filterValue === "LP") { @@ -131,7 +131,7 @@ export function TransactionTable({ {header.column.getCanFilter() ? (
- {["All", "Long", "Short", "LP"].map((filter) => ( + {["All", "Longs", "Shorts", "LP"].map((filter) => ( - Long + Longs