feat: FlowPilot migration — Phase 1-9 + Phase 9 bug fixes + QA fixture harness #147
22
frontend/src/components/pilot/InlineNoTemplateDialog.tsx
Normal file
22
frontend/src/components/pilot/InlineNoTemplateDialog.tsx
Normal file
@@ -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<typeof NoTemplateDialog>
|
||||
|
||||
export function InlineNoTemplateDialog(props: Props) {
|
||||
return (
|
||||
<div className="border-t border-default bg-bg-page animate-slide-up">
|
||||
<div className="px-5 py-3">
|
||||
<NoTemplateDialog {...props} />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default InlineNoTemplateDialog
|
||||
Reference in New Issue
Block a user