mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
fix: drop classname unused
This commit is contained in:
@@ -26,14 +26,12 @@ interface AgentsSectionProps {
|
||||
sectionTitle: string;
|
||||
agents: Agent[];
|
||||
hideAvatars?: boolean;
|
||||
className?: string;
|
||||
}
|
||||
|
||||
export const AgentsSection: React.FC<AgentsSectionProps> = ({
|
||||
sectionTitle,
|
||||
agents: allAgents,
|
||||
hideAvatars = false,
|
||||
className,
|
||||
}) => {
|
||||
const router = useRouter();
|
||||
|
||||
@@ -48,10 +46,9 @@ export const AgentsSection: React.FC<AgentsSectionProps> = ({
|
||||
|
||||
return (
|
||||
<div
|
||||
className={cn(
|
||||
"flex flex-col items-center justify-center py-4 lg:py-8",
|
||||
className,
|
||||
)}
|
||||
className=
|
||||
"flex flex-col items-center justify-center py-4 lg:py-8"
|
||||
|
||||
>
|
||||
<div className="w-full max-w-[1360px]">
|
||||
<div className="font-poppins decoration-skip-ink-none mb-8 text-left text-[18px] font-[600] leading-7 text-[#282828] underline-offset-[from-font] dark:text-neutral-200">
|
||||
|
||||
Reference in New Issue
Block a user