diff --git a/frontend/src/components/pilot/InlineNoTemplateDialog.tsx b/frontend/src/components/pilot/InlineNoTemplateDialog.tsx new file mode 100644 index 00000000..475504dc --- /dev/null +++ b/frontend/src/components/pilot/InlineNoTemplateDialog.tsx @@ -0,0 +1,22 @@ +/** + * InlineNoTemplateDialog — chat-region placement wrapper for + * NoTemplateDialog. Renders above the composer (slide-up animation + * matching ProposalBanner), using the full chat-region width so the + * three decision cards fit side-by-side. + */ +import { NoTemplateDialog } from '@/components/pilot/script/NoTemplateDialog' +import type { ComponentProps } from 'react' + +type Props = ComponentProps + +export function InlineNoTemplateDialog(props: Props) { + return ( +
+
+ +
+
+ ) +} + +export default InlineNoTemplateDialog