mirror of
https://github.com/rjNemo/melon_frontend
synced 2026-06-06 02:16:45 +00:00
refactor: fix type
This commit is contained in:
parent
2b948f8271
commit
7731b1102e
2 changed files with 2 additions and 2 deletions
|
|
@ -43,7 +43,7 @@ const BillPage = () => {
|
|||
};
|
||||
|
||||
const content = edit ? (
|
||||
<EditBillForm />
|
||||
<EditBillForm bill={bill} />
|
||||
) : sent ? (
|
||||
<BillSent />
|
||||
) : (
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ export type BillFormType = {
|
|||
|
||||
export interface Bill {
|
||||
id: number;
|
||||
phoneNumber: number;
|
||||
phoneNumber: string;
|
||||
name: string;
|
||||
price: number;
|
||||
start: Date;
|
||||
|
|
|
|||
Loading…
Reference in a new issue