diff --git a/src/app/(main)/chart/delivery/page.tsx b/src/app/(main)/chart/delivery/page.tsx
index f32a8f1..f3e93db 100644
--- a/src/app/(main)/chart/delivery/page.tsx
+++ b/src/app/(main)/chart/delivery/page.tsx
@@ -286,14 +286,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: 260 }}
/>