diff --git a/components/Dropdown.tsx b/components/Dropdown.tsx
index b39a441..9f3c103 100644
--- a/components/Dropdown.tsx
+++ b/components/Dropdown.tsx
@@ -17,15 +17,24 @@ const Dropdown = ({ items }: DropdownProps) => {
return (
- {items.map((item, index) =>
+ {items.map((item) =>
// href가 있으면 Link로 렌더링
item.href ? (
-
+
{item.label}
) : (
// href가 없으면 버튼으로 렌더링
-