Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ui: small fixes #672

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions projects/ui/src/components/Analytics/Silo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ const SiloAnalytics: FC<{}> = () => {
>
<Tab label="Deposited BEAN" />
<Tab label="Deposited BEAN3CRV" />
<Tab label="Deposited BEANWETH" />
<Tab label="Deposited BEANETH" />
<Tab label="Deposited urBEAN" />
<Tab label="Deposited urBEAN3CRV" />
<Tab label="Deposited urBEANETH" />
<Tab label="Stalk" />
{/* <Tab label="Seeds" /> */}
<Tab label="0 Seeds Bean vAPY" />
Expand Down
4 changes: 2 additions & 2 deletions projects/ui/src/lib/Txn/FarmSteps/silo/ConvertFarmStep.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,15 @@ export class ConvertFarmStep extends FarmStep {
const pathMatrix = [
[siloConvert.Bean, siloConvert.BeanCrv3],
[siloConvert.Bean, siloConvert.BeanEth],
[siloConvert.Bean, siloConvert.BeanCrv3, siloConvert.BeanEth],
[siloConvert.Bean, siloConvert.BeanEth, siloConvert.BeanCrv3],
[siloConvert.urBean, siloConvert.urBeanWeth],
];

/// b/c siloConvert uses it's own token instances
const sdkTokenPathMatrix = [
[sdk.tokens.BEAN, sdk.tokens.BEAN_CRV3_LP],
[sdk.tokens.BEAN, sdk.tokens.BEAN_ETH_WELL_LP],
[sdk.tokens.BEAN, sdk.tokens.BEAN_CRV3_LP, sdk.tokens.BEAN_ETH_WELL_LP],
[sdk.tokens.BEAN, sdk.tokens.BEAN_ETH_WELL_LP, sdk.tokens.BEAN_CRV3_LP],
[sdk.tokens.UNRIPE_BEAN, sdk.tokens.UNRIPE_BEAN_WETH],
];

Expand Down