Skip to content

Commit

Permalink
removed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lopezh18 committed Jun 20, 2019
1 parent 1eddd31 commit 452b65e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/actions/action-creators.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ describe('Action creators', () => {
};
// download mock
const download = () => null;
// dispatch action

store.dispatch(actions.generateGIF([], opts, gifshot, download));
expect(store.getActions()).toEqual(expectedActions);
});
Expand Down
4 changes: 1 addition & 3 deletions src/containers/SidebarContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@ import { requestFrame, togglePane, reset } from '../actions';
const mapStateToProps = (state, ownProps) => {
const { images, settings, ui } = state;
const { expandedPane } = ui;
const { gifData, frameIDs, gifFileName } = images;
const { frameIDs } = images;
const { width, height, oversample } = settings.image;

return {
numFrames: frameIDs.length,
expandedPane,
// gifData,
// gifFileName,
width,
height,
oversample
Expand Down

0 comments on commit 452b65e

Please sign in to comment.