Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncid committed Dec 17, 2024
1 parent 608028d commit 3369043
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions front/components/assistant_builder/TemplateGrid.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AssistantCard, CardGrid } from "@dust-tt/sparkle";
import { LargeAssistantCard } from "@dust-tt/sparkle";

import type { AssistantTemplateListType } from "@app/pages/api/w/[wId]/assistant/builder/templates";

Expand All @@ -15,16 +15,16 @@ export function TemplateGrid({
return null;
}
return (
<CardGrid>
<div className="grid grid-cols-2 gap-2">
{templates.map((t) => (
<AssistantCard
<LargeAssistantCard
key={t.sId}
title={t.handle}
pictureUrl={t.pictureUrl}
description={t.description ?? ""}
onClick={() => openTemplateModal(t.sId)}
/>
))}
</CardGrid>
</div>
);
}

0 comments on commit 3369043

Please sign in to comment.