1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2026-01-03 21:42:32 +03:00

Fix types

This commit is contained in:
Florian Duros
2022-12-06 16:45:25 +01:00
parent 1bd560d350
commit bc001c2b88

View File

@@ -75,8 +75,8 @@ describe('SendWysiwygComposer', () => {
});
const customRender = (
onChange = (_content: string) => void 0,
onSend = () => void 0,
onChange = (_content: string): void => void 0,
onSend = (): void => void 0,
disabled = false,
isRichTextEnabled = true,
placeholder?: string) => {