Update prettier/eslint

This commit is contained in:
2021-05-03 16:51:50 -05:00
parent 9246b33440
commit 7cb3094305
52 changed files with 312 additions and 968 deletions

View File

@@ -8,8 +8,7 @@ import { promptLocationAndSaveFile } from '../../utils';
const mapStateToProps = (state) => {
return {
InfoMessage:
state.error.InfoStack.length > 0 ? state.error.InfoStack[0] : '',
InfoMessage: state.error.InfoStack.length > 0 ? state.error.InfoStack[0] : '',
};
};
@@ -75,9 +74,7 @@ export default connect(
clicked={() => {
if (
promptLocationAndSaveFile(
props.InfoMessage.fileName +
'.' +
props.InfoMessage.extension,
props.InfoMessage.fileName + '.' + props.InfoMessage.extension,
msg,
props.notifyError
)