From 28860214d20cf418995508bdb0cc914a8bc03b52 Mon Sep 17 00:00:00 2001 From: homumado <84349818+homumado@users.noreply.github.com> Date: Tue, 15 Mar 2022 04:40:05 -0500 Subject: [PATCH] Fix some more playground errors (#1975) This commit adds `ErrorBoundary` back in to catch some more errors. Related-to: GH-1956. Closes GH-1975. Reviewed-by: Christian Murphy Reviewed-by: Titus Wormer --- 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} +