Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 5 additions & 1 deletion apps/nowait-admin/src/types/order.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// 주문 상태 타입
export type OrderStatus = "WAITING_FOR_PAYMENT" | "COOKING" | "COOKED";
export type OrderStatus =
| "WAITING_FOR_PAYMENT"
| "COOKING"
| "COOKED"
| "CANCELLED";

// 메뉴 상세 정보 타입
export interface MenuDetail {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const PhoneNumberInput = ({
};

return (
<div className="flex items-center justify-between px-3.5 py-5 rounded-[12px] border-black-25 bg-black-15">
<div className="flex w-full items-center justify-between px-3.5 py-5 rounded-[12px] border-black-25 bg-black-15">
<input
type="tel"
inputMode="numeric"
Expand Down