Skip to content

Commit

Permalink
fix: after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszjasiuk committed Oct 16, 2024
1 parent bbe7d8a commit 3cd498d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/namadillo/src/App/Ibc/IbcWithdraw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Key as KeplrKey, Window as KeplrWindow } from "@keplr-wallet/types";
import { Panel } from "@namada/components";
import { WindowWithNamada } from "@namada/types";
import BigNumber from "bignumber.js";
import { getSdkInstance } from "hooks";
import { useAtomValue } from "jotai";
import { useEffect, useState } from "react";

Expand All @@ -11,6 +10,7 @@ import { NamInput } from "App/Common/NamInput";
import { accountBalanceAtom, defaultAccountAtom } from "atoms/accounts";
import { chainAtom, chainParametersAtom } from "atoms/chain";
import { getFirstError } from "atoms/utils";
import { getSdkInstance } from "utils/sdk";

const keplr = (window as KeplrWindow).keplr!;
const namada = (window as WindowWithNamada).namada!;
Expand Down
4 changes: 2 additions & 2 deletions apps/namadillo/src/App/WorkerTest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function WorkerTest(): JSX.Element {
},
});

const shiedlingMsgValue = new ShieldingTransferMsgValue({
const shieldingMsgValue = new ShieldingTransferMsgValue({
target,
data: [
{
Expand All @@ -82,7 +82,7 @@ export function WorkerTest(): JSX.Element {
gasLimit: BigNumber(250000),
gasPrice: BigNumber(0.000001),
},
shieldingProps: [shiedlingMsgValue],
shieldingProps: [shieldingMsgValue],
indexerUrl,
chain: chain!,
},
Expand Down

0 comments on commit 3cd498d

Please sign in to comment.