diff --git a/front/components/assistant_builder/TemplateGrid.tsx b/front/components/assistant_builder/TemplateGrid.tsx index e4d058e11e69d..cdc43b39df530 100644 --- a/front/components/assistant_builder/TemplateGrid.tsx +++ b/front/components/assistant_builder/TemplateGrid.tsx @@ -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"; @@ -15,9 +15,9 @@ export function TemplateGrid({ return null; } return ( - +
{templates.map((t) => ( - openTemplateModal(t.sId)} /> ))} - +
); }