Skip to content

Commit

Permalink
refactor: finance modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Jadapema committed Jan 8, 2025
1 parent b81c352 commit 2886c38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sections/finance/components/finance-deposit-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const depositTabs = [
{ value: 'smartAccount', label: 'Smart Account', disabled: false, icon: <Iconify icon={'logos:ethereum-color'} /> },
];

const FinanceDepositModal: FC<FinanceDepositModalProps> = ({ open, onClose }) => {
export const FinanceDepositModal: FC<FinanceDepositModalProps> = ({ open, onClose }) => {
const renderContent = (currentTab: string) => {
switch (currentTab) {
case 'fiat':
Expand Down
2 changes: 1 addition & 1 deletion src/sections/finance/components/finance-withdraw-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const withdrawTabs = [
{ value: 'smartAccount', label: 'Smart Account', disabled: false, icon: <Iconify icon={'logos:ethereum-color'} /> },
];

const FinanceWithdrawModal: FC<FinanceWithdrawModalProps> = ({ open, onClose }) => {
export const FinanceWithdrawModal: FC<FinanceWithdrawModalProps> = ({ open, onClose }) => {
const renderContent = (currentTab: string) => {
switch (currentTab) {
case 'metamask':
Expand Down

0 comments on commit 2886c38

Please sign in to comment.