From 655386caddeae1103f81f6bc694c1cdb6a6b0ccf Mon Sep 17 00:00:00 2001 From: homumado Date: Mon, 14 Mar 2022 12:48:32 -0700 Subject: [PATCH] Add ErrorBoundary back in to catch dom errors. --- docs/_component/editor.client.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/_component/editor.client.js b/docs/_component/editor.client.js index 74010106c..bd7aca8b0 100644 --- a/docs/_component/editor.client.js +++ b/docs/_component/editor.client.js @@ -241,7 +241,9 @@ export const Editor = ({children}) => {
- {state.file && state.file.result ? : null} + + {state.file && state.file.result ? : null} +