From ad774e0f7c9a44e0211ee34a50ebf002e8fdc568 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Wed, 27 Jul 2022 15:34:39 -0500 Subject: [PATCH] suppress redux non-serializable error for error objects --- src/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 0aa560fd..2372c0f8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -52,6 +52,8 @@ const store = configureStore({ // contain ArrayBuffer or DataView 'data', 'firmwareZip', + // Error is not serializable + 'error', ], }, })