Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FE] 계좌번호 수정이 되지 않는 문제 해결 #844

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
style: User 타입 분리
jinhokim98 committed Dec 7, 2024
commit 7535987e1b3299ebdd3a77333ed6ee7b9c9e8425
13 changes: 10 additions & 3 deletions client/src/types/serviceType.ts
Original file line number Diff line number Diff line change
@@ -59,12 +59,19 @@ export interface EventCreationData {
password: Password;
}

export interface Event {
eventName: EventName;
export type BankAccount = {
bankName: string;
accountNumber: string;
};

export type Event = BankAccount & {
eventName: EventName;
createdByGuest: boolean;
}
};

export type User = BankAccount & {
nickname: Nickname;
};

export interface Report {
memberId: number;