Skip to content

Commit

Permalink
fix: the context is already set by the action, avoid adding extra det…
Browse files Browse the repository at this point in the history
…ails
  • Loading branch information
geolffreym committed Jan 8, 2025
1 parent acc7717 commit 755790f
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 @@ -48,7 +48,7 @@ export const FinanceDepositModal: FC<FinanceDepositModalProps> = ({ open, onClos

return (
<Dialog open={open} fullWidth maxWidth="xs" onClose={onClose}>
<DialogTitle>Deposit to your vault balance</DialogTitle>
<DialogTitle>Deposit</DialogTitle>

<Tabs
key={`tabs-deposit`}
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 @@ -47,7 +47,7 @@ export const FinanceWithdrawModal: FC<FinanceWithdrawModalProps> = ({ open, onCl

return (
<Dialog open={open} fullWidth maxWidth="xs" onClose={onClose}>
<DialogTitle>Withdraw from your vault balance</DialogTitle>
<DialogTitle>Withdraw</DialogTitle>

<Tabs
key={`tabs-deposit`}
Expand Down

0 comments on commit 755790f

Please sign in to comment.