Skip to content

Commit

Permalink
fixup! [LLD] EVM Family has same capability as Ethereum Family (#4001)
Browse files Browse the repository at this point in the history
  • Loading branch information
chabroA committed Aug 24, 2023
1 parent 696358b commit a803ed4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const StepSummary = (props: StepProps) => {

const { estimatedFees, amount, totalSpent, warnings } = status;
const txInputs = "txInputs" in status ? status.txInputs : undefined;
const feeTooHigh = warnings.feeTooHigh;
const { feeTooHigh } = warnings;
const currency = getAccountCurrency(account);
const feesCurrency = getFeesCurrency(mainAccount);
const feesUnit = getFeesUnit(feesCurrency);
Expand Down
2 changes: 1 addition & 1 deletion apps/ledger-live-mobile/src/components/Stake/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
type StakingDrawerID = "EthStakingDrawer" | "EvmStakingDrawer";
type StakingDrawerID = "EvmStakingDrawer";

export type StakingDrawerNavigationProps = {
id: StakingDrawerID;
Expand Down
2 changes: 1 addition & 1 deletion libs/ledger-live-common/src/exchange/swap/getProviders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const getProviders: GetProviders = async () => {

return Object.entries(responseV4.providers).flatMap(([provider, groups]) => {
return {
provider: provider,
provider,
pairs: groups.flatMap(group =>
group.methods.flatMap(tradeMethod =>
Object.entries(group.pairs).flatMap(([from, toArray]) =>
Expand Down

0 comments on commit a803ed4

Please sign in to comment.