Fix dimensions of preview cards, fix crash in web UI, fix warning (#9133)

This commit is contained in:
Eugen Rochko
2018-10-29 04:42:07 +01:00
committed by GitHub
parent 26fe37c414
commit 9c38c5daa3
8 changed files with 8 additions and 86 deletions

View File

@@ -1,8 +0,0 @@
import { connect } from 'react-redux';
import Card from '../components/card';
const mapStateToProps = (state, { statusId }) => ({
card: state.getIn(['statuses', statusId, 'card'], null),
});
export default connect(mapStateToProps)(Card);