From 378c9c595b5ff7f09ff6b488265591ae437ee609 Mon Sep 17 00:00:00 2001 From: jberg Date: Mon, 19 Aug 2019 10:22:44 -0700 Subject: [PATCH] Pass store into skin loading (#875) --- modern/src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modern/src/App.js b/modern/src/App.js index 3aa82aec..b9f29c6c 100644 --- a/modern/src/App.js +++ b/modern/src/App.js @@ -551,7 +551,7 @@ function App() { { - dispatch(Actions.gotSkinBlob(e.dataTransfer.files[0])); + dispatch(Actions.gotSkinBlob(e.dataTransfer.files[0], store)); }} > @@ -559,7 +559,7 @@ function App() {