From 359c01642e6cca1019a1c42274c964c6be661b83 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Fri, 12 Aug 2022 14:40:55 -0500 Subject: [PATCH] index: ignore non-serializable 'payload' This suppresses redux-toolkit errors in the console log. --- src/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.tsx b/src/index.tsx index 2372c0f8..673bc0a9 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -52,6 +52,7 @@ const store = configureStore({ // contain ArrayBuffer or DataView 'data', 'firmwareZip', + 'payload', // Error is not serializable 'error', ],