diff --git a/src/components/Sidebar.js b/src/components/Sidebar.js index be792b5..a686b08 100644 --- a/src/components/Sidebar.js +++ b/src/components/Sidebar.js @@ -32,7 +32,6 @@ class Sidebar extends Component { handleDownload() { const { gifData } = this.props; - // TODO: user-editable filename? download(gifData, 'gifsmos.gif', 'image/gif'); } diff --git a/src/reducers/settings.js b/src/reducers/settings.js index 3ad58ac..a5edf27 100644 --- a/src/reducers/settings.js +++ b/src/reducers/settings.js @@ -41,7 +41,6 @@ const initialState = { strategy: 'contain' }; -// TODO: implement bounds and strategy const settings = (state = initialState, { type, payload }) => { switch (type) { case UPDATE_IMAGE_SETTING: