diff --git a/src/features/guides/components/Frame.tsx b/src/features/guides/components/Frame.tsx index c93c1e4..1c6a7c6 100644 --- a/src/features/guides/components/Frame.tsx +++ b/src/features/guides/components/Frame.tsx @@ -7,23 +7,27 @@ export default function Frame({ addStep, removeStep, updateStep, + updateTitle, }: { frame: FrameType; onRemove: (frameId: string) => void; addStep: (frameId: string) => void; removeStep: (stepId: string) => void; updateStep: (stepId: string, text: string) => void; + updateTitle: (frameId: string, title: string) => void; }) { return (
- - updateStep(frame.id, e.target.value)} - /> + {frame.title}