Make initialContent optional is SendWysiwygComposer

pull/28788/head^2
Florian Duros 2022-10-26 12:41:44 +02:00
parent b85b5dacee
commit 5d86b5ac48
No known key found for this signature in database
GPG Key ID: 9700AA5870258A0B
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ const Content = forwardRef<HTMLElement, ContentProps>(
);
interface SendWysiwygComposerProps {
initialContent: string;
initialContent?: string;
isRichTextEnabled: boolean;
disabled?: boolean;
onChange: (content: string) => void;