Skip to content
Snippets Groups Projects
Commit 0b8c3db9 authored by Minseo Lee's avatar Minseo Lee
Browse files

fix: admin no-order ux

parent e9006e13
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ const AdminPage: GFC = ({ connector }) => {
return (
<div className={S['container']}>
{
orderList.length && orderList.map((d, i) => {
orderList.length ? orderList.map((d, i) => {
return (
<AdminOrderBox connector={connector} items={d.items}
waitingCount={d.waitingCount} takeout={d.takeout}
......@@ -76,6 +76,7 @@ const AdminPage: GFC = ({ connector }) => {
/>
);
})
: <p>대기중인 주문이 없습니다</p>
}
</div>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment