Fix types
This commit is contained in:
parent
1bd560d350
commit
bc001c2b88
1 changed files with 2 additions and 2 deletions
|
@ -75,8 +75,8 @@ describe('SendWysiwygComposer', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
const customRender = (
|
const customRender = (
|
||||||
onChange = (_content: string) => void 0,
|
onChange = (_content: string): void => void 0,
|
||||||
onSend = () => void 0,
|
onSend = (): void => void 0,
|
||||||
disabled = false,
|
disabled = false,
|
||||||
isRichTextEnabled = true,
|
isRichTextEnabled = true,
|
||||||
placeholder?: string) => {
|
placeholder?: string) => {
|
||||||
|
|
Loading…
Reference in a new issue