Skip to content

Commit

Permalink
remove version column from testing
Browse files Browse the repository at this point in the history
  • Loading branch information
brightiron committed Dec 1, 2024
1 parent de2c11b commit e1b7225
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/views/Lending/Cooler/positions/Positions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ export const CoolerPositions = () => {
<Table sx={{ minWidth: 650 }} aria-label="simple table">
<TableHead>
<TableRow>
<TableCell sx={{ fontSize: "15px", padding: "9px" }}>Version</TableCell>
<TableCell sx={{ fontSize: "15px", padding: "9px" }}>Collateral</TableCell>
<TableCell sx={{ fontSize: "15px", padding: "9px" }} align="right">
Interest Rate
Expand All @@ -205,7 +204,6 @@ export const CoolerPositions = () => {
const principalAndInterest = loan.principal.add(loan.interestDue || 0) || 0;
return (
<TableRow key={index} sx={{ "&:last-child td, &:last-child th": { border: 0 } }}>
<TableCell sx={{ padding: "9px" }}>ClearingHouse {loan.version.toUpperCase()}</TableCell>
<TableCell component="th" scope="row" sx={{ padding: "9px" }}>
<Box display="flex" alignItems="center" gap="3px">
{loan.collateral && Number(ethers.utils.formatUnits(loan.collateral.toString())).toFixed(4)}{" "}
Expand Down

0 comments on commit e1b7225

Please sign in to comment.