From 2da06587ba60c35d6fa35c1be32526f836cef5a2 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 12 Sep 2019 08:08:01 -0700 Subject: [PATCH] Document reason for ts-ignore in init.tsx Summary: Per title Reviewed By: jknoxville Differential Revision: D17343033 fbshipit-source-id: ce61866cd82ed68ee03d3e3261d7fba15f73eec0 --- src/init.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.tsx b/src/init.tsx index 28891f144..c70174c78 100644 --- a/src/init.tsx +++ b/src/init.tsx @@ -32,7 +32,7 @@ const store = createStore( reducers, window.__REDUX_DEVTOOLS_EXTENSION__ ? window.__REDUX_DEVTOOLS_EXTENSION__({ - // @ts-ignore + // @ts-ignore: stateSanitizer is not part of type definition. stateSanitizer, }) : undefined,