Skip to content

Commit

Permalink
chore/#75 api 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
altys31 committed Aug 31, 2024
1 parent 367852d commit 34fc599
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions ssh-web/src/pages/Account/Child/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -413,12 +413,6 @@ export const DepositAccountCard = ({
);
};

interface SendMoneyReqeust {
transactionBalance: number;
depositAccountNo: string;
transactionSummary: string;
}

export const SendMoneyModal = ({ account, setIsOpen }: SendMoneyModalProps) => {
const [accountNumber, setAccountNumber] = useState('');
const [amount, setAmount] = useState('');
Expand Down Expand Up @@ -656,7 +650,7 @@ export const DeleteAccountModal = ({
useEffect(() => {
setIsLoading(true);
api
.post(`/api/children/accounts/deposit/recommanded`)
.post(`/api/children/accounts/deposit/recommended`)
.then((res) => {
setImageUrl(res.data.imageUrl);
setIsLoading(false);
Expand Down

0 comments on commit 34fc599

Please sign in to comment.