Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fix/style-tune-c' into tmp/20250117
Browse files Browse the repository at this point in the history
  • Loading branch information
dmy147 committed Jan 20, 2025
2 parents e1ba94d + b43cddd commit 877a1b6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ui/views/GasAccount/components/WithdrawPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const Selector = ({
accountsList: IDisplayedAccountWithBalance[];
status: SelectorStatus;
onClose: () => void;
selectAddressChainList: WithdrawListAddressItem;
selectAddressChainList?: WithdrawListAddressItem;
setChain: (chain: RechargeChainItem) => void;
setSelectAddressChainList: (item: WithdrawListAddressItem) => void;
withdrawList: WithdrawListAddressItem[];
Expand Down Expand Up @@ -528,7 +528,7 @@ const WithdrawContent = ({
/>
</div>
</div>
) : !selectedAccount ? (
) : selectedAccount ? (
<AddressRightAreaInItem account={selectedAccount} />
) : (
<span className="text-15 font-medium text-r-neutral-title1">
Expand Down Expand Up @@ -626,17 +626,17 @@ const WithdrawContent = ({
</Button>
</TooltipWithMagnetArrow>
</WrapperDiv>
{withdrawList && selectAddressChainList && (
{
<Selector
accountsList={accountsList}
status={selectorStatus}
onClose={() => setSelectorStatus(SelectorStatus.Hidden)}
selectAddressChainList={selectAddressChainList}
setChain={setChain}
setSelectAddressChainList={setSelectAddressChainList}
withdrawList={withdrawList}
withdrawList={withdrawList || []}
/>
)}
}
</div>
);
};
Expand Down

0 comments on commit 877a1b6

Please sign in to comment.