Skip to content

Commit

Permalink
feat: addressing reviewing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrorezende committed Sep 19, 2024
1 parent 8d74d50 commit 2a3d0ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
Empty file.
2 changes: 1 addition & 1 deletion apps/namadillo/src/App/Transfer/SelectAssetsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const SelectAssetsModal = ({
}: SelectItemsModalProps): JSX.Element => {
return (
<SelectModal onClose={onClose} title="Select Asset">
a
<></>
</SelectModal>
);
};
9 changes: 3 additions & 6 deletions apps/namadillo/src/App/Transfer/TransferDestination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { NamCurrency } from "App/Common/NamCurrency";
import { TabSelector } from "App/Common/TabSelector";
import BigNumber from "bignumber.js";
import clsx from "clsx";
import { twMerge } from "tailwind-merge";
import { Chain, Provider } from "types";
import namadaShieldedSvg from "./assets/namada-shielded.svg";
import namadaTransparentSvg from "./assets/namada-transparent.svg";
Expand Down Expand Up @@ -53,11 +52,9 @@ export const TransferDestination = ({
}: TransferDestinationProps): JSX.Element => {
return (
<div
className={twMerge(
clsx("relative bg-neutral-800 rounded-lg px-4 py-5", {
"border-yellow": isShielded,
})
)}
className={clsx("relative bg-neutral-800 rounded-lg px-4 py-5", {
"border-yellow": isShielded,
})}
>
{onChangeShielded && chain?.name === "Namada" && (
<TabSelector
Expand Down

0 comments on commit 2a3d0ba

Please sign in to comment.