From e6782cb29196964fc380f6ca85f7d7aa10ae3b3d Mon Sep 17 00:00:00 2001 From: David Lechner Date: Fri, 22 Jul 2022 15:07:10 -0500 Subject: [PATCH] index: avoid more non-serializable dev tool errors --- src/index.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 92ee13a1..0aa560fd 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -47,9 +47,11 @@ const store = configureStore({ // copy of defaults 'meta.arg', 'meta.baseQueryMeta', - // HACK: technically serializable, can be removed after - // https://github.com/microsoft/vscode/pull/151993 + // monoco view state has class-based object but is technically serializable 'viewState.viewState.firstPosition', + // contain ArrayBuffer or DataView + 'data', + 'firmwareZip', ], }, })