Skip to content

Commit

Permalink
fix/#68: 배포테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
altys31 committed Aug 30, 2024
1 parent 4e13359 commit f35becc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ssh-web/src/components/molecules/ChangeChild/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const ChangeChild = ({
setChildrenList(res.data);
setIsLoading(false);
});
});
}, []);

return (
<div className="flex flex-row relative items-center mb-2 p-2 px-4 rounded-lg space-x-3">
Expand Down
4 changes: 2 additions & 2 deletions ssh-web/src/pages/Account/Child/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ interface InstallmentAccountCardProps {
handleDeleteAccountModal: (item: IAccount) => void;
}

interface ITransaction {
export interface ITransaction {
dateTime: string;
balance: number;
transactionAfterBalance: number;
memo: string;
}

interface IAccount {
export interface IAccount {
accountName: string;
accountNo: string;
accountTypeCode: string;
Expand Down

0 comments on commit f35becc

Please sign in to comment.