This commit is contained in:
2025-10-18 16:32:22 +03:00
parent 9d4621d0a4
commit a5418b3724
5 changed files with 33 additions and 29 deletions

View File

@@ -38,7 +38,10 @@ export default function TableNumberCard() {
mode="multiple"
placeholder={t("cart.tableNumber")}
size="large"
options={tableList}
options={tableList?.map((table: any) => ({
label: table.name,
value: table.id,
}))}
style={{
width: "100%",
height: 50,