Skip to content

Commit

Permalink
disable multiply (#741)
Browse files Browse the repository at this point in the history
* remove switch multiply/loan from Loan Screen card

* disable multiply next: summary
  • Loading branch information
ColinPlatt authored Jan 22, 2025
1 parent 6cb3ed9 commit c20d37e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
4 changes: 2 additions & 2 deletions frontend/app/src/screens/LeverageScreen/LeverageScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@ export function LeverageScreen() {
})}
>
<Button
disabled={!allowSubmit}
label={content.leverageScreen.action}
disabled={true}
label={"Coming Soon"}
mode="primary"
size="large"
wide
Expand Down
16 changes: 0 additions & 16 deletions frontend/app/src/screens/LoanScreen/LoanScreenCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -500,22 +500,6 @@ function LoanCard({
</div>
}
items={[
{
icon: (
<div
className={css({
color: "accent",
})}
>
{mode === "multiply"
? <IconBorrow size={16} />
: <IconLeverage size={16} />}
</div>
),
label: mode === "multiply"
? "Convert to BOLD loan"
: "Convert to Multiply position",
},
{
icon: (
<div
Expand Down

0 comments on commit c20d37e

Please sign in to comment.