Skip to content

Commit

Permalink
fix: remove legacy toggleTextInfo action (#1519)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrebb committed Jan 17, 2024
1 parent 051adfb commit bedad49
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions compare/src/components/molecules/SettingsPopup.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { connect } from 'react-redux';
import styled from 'styled-components';
import { updateSettings, toggleAllImages, toggleTextInfo } from '../../actions';
import { updateSettings, toggleAllImages } from '../../actions';

import { colors, shadows } from '../../styles';

Expand Down Expand Up @@ -117,9 +117,6 @@ const mapDispatchToProps = dispatch => {
},
toggleAll: value => {
dispatch(toggleAllImages(value));
},
toogleTextInfo: value => {
dispatch(toggleTextInfo(value));
}
};
};
Expand Down

0 comments on commit bedad49

Please sign in to comment.