diff --git a/servers/nextjs/app/(presentation-generator)/outline/components/LayoutSelection.tsx b/servers/nextjs/app/(presentation-generator)/outline/components/LayoutSelection.tsx index 57c2a77b..3dc97448 100644 --- a/servers/nextjs/app/(presentation-generator)/outline/components/LayoutSelection.tsx +++ b/servers/nextjs/app/(presentation-generator)/outline/components/LayoutSelection.tsx @@ -172,16 +172,22 @@ const LayoutSelection: React.FC = ({

Custom AI Templates

-
- {customGroups.map((group) => ( - - ))} -
+ {customGroups.length === 0 ? ( +
+ No custom templates. Create one from "Create Template" menu. +
+ ) : ( +
+ {customGroups.map((group) => ( + + ))} +
+ )} );