diff --git a/src/app/(main)/chart/delivery/page.tsx b/src/app/(main)/chart/delivery/page.tsx index e944125..ea9f914 100644 --- a/src/app/(main)/chart/delivery/page.tsx +++ b/src/app/(main)/chart/delivery/page.tsx @@ -227,14 +227,17 @@ export default function DeliveryChartPage() { )} renderTags={(value, getTagProps) => - value.map((option, index) => ( - - )) + value.map((option, index) => { + const { key: _key, ...tagProps } = getTagProps({ index }); + return ( + + ); + }) } sx={{ minWidth: 280 }} />