Skip to content

Commit 8f65c30

Browse files
committed
fix(workflow-editor): correct type casting in RepeatMenuDescription component
1 parent dd349aa commit 8f65c30

File tree

1 file changed

+1
-1
lines changed
  • apps/dashboard/src/components/workflow-editor/steps/email

1 file changed

+1
-1
lines changed

apps/dashboard/src/components/workflow-editor/steps/email/maily.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const Maily = ({ value, onChange, className, ...rest }: MailyProps) => {
104104
}
105105
}}
106106
repeatMenuConfig={{
107-
description: (editor) => <RepeatMenuDescription editor={editor as unknown as TiptapEditor} />,
107+
description: (editor) => <RepeatMenuDescription editor={editor} />,
108108
}}
109109
/>
110110
</div>

0 commit comments

Comments
 (0)