Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
chitalian committed Jan 9, 2025
1 parent dc0a849 commit 90243d0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion web/components/templates/prompts/promptsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,12 @@ const PromptsPage = (props: PromptsPageProps) => {

{filteredPrompts && (hasLimitedAccess || hasAccess) ? (
searchParams.get("view") === "card" ? (
<ul className={cn("w-full h-full grid grid-cols-2 xl:grid-cols-4 gap-4", ISLAND_MARGIN)}>
<ul
className={cn(
"w-full h-full grid grid-cols-2 xl:grid-cols-4 gap-4",
ISLAND_MARGIN
)}
>
{filteredPrompts.map((prompt, i) => (
<li key={i} className="col-span-1">
<PromptCard prompt={prompt} />
Expand Down

0 comments on commit 90243d0

Please sign in to comment.