Skip to content

Commit

Permalink
fix: prettier fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszjasiuk committed Jan 21, 2025
1 parent dee92ad commit 9564434
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/extension/src/Setup/Setup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ export const Setup: React.FC = () => {

const prettyAccountSecret =
accountSecret.t === "Mnemonic" ? "mnemonic"
: accountSecret.t === "PrivateKey" ? "private key"
: assertNever(accountSecret);
: accountSecret.t === "PrivateKey" ? "private key"
: assertNever(accountSecret);
setCompletionStatusInfo(`Encrypting and storing ${prettyAccountSecret}.`);

// Create parent account
Expand Down
1 change: 0 additions & 1 deletion apps/namadillo/src/App/Ibc/IbcTransfer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export const IbcTransfer = (): JSX.Element => {
walletAddress: sourceAddress,
})
);
console.log("userAssets", userAssets);

// Local State
const [shielded, setShielded] = useState<boolean>(true);
Expand Down
2 changes: 1 addition & 1 deletion apps/namadillo/src/App/NamadaTransfer/NamadaTransfer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const NamadaTransfer: React.FC = () => {
const account = defaultAccounts.data?.find((account) =>
shielded ?
account.type === AccountType.ShieldedKeys
: account.type !== AccountType.ShieldedKeys
: account.type !== AccountType.ShieldedKeys
);
const sourceAddress = account?.address;
const selectedAssetAddress = searchParams.get(params.asset) || undefined;
Expand Down

0 comments on commit 9564434

Please sign in to comment.