From 390ed68cd24b93887ed7c758bd34015c723b62b6 Mon Sep 17 00:00:00 2001 From: Paul Kaplan <pkaplan@media.mit.edu> Date: Thu, 5 Jul 2018 08:58:31 -0400 Subject: [PATCH] Make variable names more explicit --- src/containers/target-pane.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/target-pane.jsx b/src/containers/target-pane.jsx index 55f1a23ed..5f9fef8db 100644 --- a/src/containers/target-pane.jsx +++ b/src/containers/target-pane.jsx @@ -140,7 +140,7 @@ class TargetPane extends React.Component { // So for now just grab the zip manually. fetch(dragInfo.payload.bodyUrl) .then(response => response.arrayBuffer()) - .then(zip => this.props.vm.addSprite(zip)); + .then(sprite3Zip => this.props.vm.addSprite(sprite3Zip)); } else if (targetId) { // Something is being dragged over one of the sprite tiles or the backdrop. // Dropping assets like sounds and costumes duplicate the asset on the -- GitLab