Apply strictNullChecks
to src/contexts/*
(#10490)
This commit is contained in:
parent
17b456c7ee
commit
212977c4ac
4 changed files with 6 additions and 5 deletions
|
@ -46,7 +46,8 @@ export function useEditing(
|
|||
);
|
||||
|
||||
const editMessageMemoized = useCallback(
|
||||
() => content !== undefined && editMessage(content, { roomContext, mxClient, editorStateTransfer }),
|
||||
() =>
|
||||
!!mxClient && content !== undefined && editMessage(content, { roomContext, mxClient, editorStateTransfer }),
|
||||
[content, roomContext, mxClient, editorStateTransfer],
|
||||
);
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ export function useInitialContent(editorStateTransfer: EditorStateTransfer): str
|
|||
const mxClient = useMatrixClientContext();
|
||||
|
||||
return useMemo<string | undefined>(() => {
|
||||
if (editorStateTransfer && roomContext.room) {
|
||||
if (editorStateTransfer && roomContext.room && mxClient) {
|
||||
return parseEditorStateTransfer(editorStateTransfer, roomContext.room, mxClient);
|
||||
}
|
||||
}, [editorStateTransfer, roomContext, mxClient]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue