From 3d7eb11a49e2252e327f881d407a8420f9a6efbf Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Wed, 26 Jun 2019 22:10:07 -0700 Subject: [PATCH] fix: react warning with DropToImport --- app/components/DropToImport.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/components/DropToImport.js b/app/components/DropToImport.js index 0311bd3a5..94e116bea 100644 --- a/app/components/DropToImport.js +++ b/app/components/DropToImport.js @@ -23,6 +23,7 @@ type Props = { location: Object, match: Object, history: Object, + staticContext: Object, }; export const GlobalStyles = createGlobalStyle` @@ -81,6 +82,7 @@ class DropToImport extends React.Component { location, match, history, + staticContext, ...rest } = this.props;