shared library hinzugefügt

This commit is contained in:
PxlLoewe
2025-06-26 20:40:23 -07:00
parent a93e95eb95
commit 122cdda486
59 changed files with 163 additions and 246 deletions

View File

@@ -3,7 +3,7 @@ import { DrawingPinFilledIcon } from "@radix-ui/react-icons";
import { Event, Participant, EventAppointment, User } from "@repo/db";
import ModalBtn from "./modalBtn";
import MDEditor from "@uiw/react-md-editor";
import { Badge } from "../../../_components/Badge/Badge";
import { Badge } from "@repo/shared-components";
export const EventCard = ({
user,
@@ -46,7 +46,7 @@ export const EventCard = ({
</div>
<div className="flex col-span-2 justify-end">
{event.finishedBadges.map((b) => {
return <Badge name={b} key={b} />;
return <Badge badge={b} key={b} />;
})}
</div>
</div>