Skip to content

Commit 19d1ce7

Browse files
committed
feat(back): add cascade deletion of projects
feat(front): add modal to call deletion endpoints for projects
1 parent b50b32d commit 19d1ce7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

webapp/src/components/ui/calendar.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,10 @@ function Calendar({
5656
...classNames,
5757
}}
5858
components={{
59-
Chevron: ({ className, orientation, ...props }) => {
59+
Chevron: ({ orientation, ...props }) => {
6060
const Icon =
6161
orientation === "left" ? ChevronLeft : ChevronRight;
62-
return (
63-
<Icon className={cn("h-4 w-4", className)} {...props} />
64-
);
62+
return <Icon className="h-4 w-4" {...props} />;
6563
},
6664
}}
6765
{...props}

0 commit comments

Comments
 (0)