Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: docker-compose-npm-error #1486

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions client/components/card/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React from "react";

function Card(props: {
className?: string;
extra?: string;
children?: React.ReactNode | Element;
children?: React.ReactNode; // Simplified type
default?: boolean;
}) {
const { extra, children, ...rest } = props;
Expand All @@ -11,7 +12,7 @@ function Card(props: {
className={`!z-5 relative flex flex-col rounded-[20px] shadow-[rgba(0, 0, 0, 0.2)] shadow-md border border-gray-100 dark:border-none dark:shadow-none bg-clip-border dark:!bg-darkMain dark:text-white ${extra}`}
{...rest}
>
<>{children}</>
{children} {/* Removed unnecessary fragment */}
</div>
);
}
Expand Down