diff --git a/apps/web/src/components/general/ExpandableListItem.tsx b/apps/web/src/components/general/ExpandableListItem.tsx
index 0c40914e..1e33022c 100644
--- a/apps/web/src/components/general/ExpandableListItem.tsx
+++ b/apps/web/src/components/general/ExpandableListItem.tsx
@@ -7,14 +7,14 @@ import { Button } from '../ui/button';
interface ExpandableListItemProps {
children: React.ReactNode;
- bullets: React.ReactNode[];
+ content: React.ReactNode;
title: string;
image?: React.ReactNode;
initialOpen?: boolean;
}
export function ExpandableListItem({
title,
- bullets,
+ content,
image,
initialOpen = false,
children,
@@ -22,15 +22,15 @@ export function ExpandableListItem({
const [open, setOpen] = useState(initialOpen ?? false);
return (
-
+
{image}
{title}
-
- {bullets.map((bullet, index) => (
- {bullet}
- ))}
-
+ {!!content && (
+
+ {content}
+
+ )}