fix travis

This commit is contained in:
Daniel Ternyak 2020-07-24 14:23:45 -05:00
parent 15fbdc17b8
commit 5225da5cbe
No known key found for this signature in database
GPG Key ID: DF212D2DC5D0E245
2 changed files with 2 additions and 23 deletions

View File

@ -2,7 +2,7 @@
# Flask
Flask==1.0.2
MarkupSafe==1.0
MarkupSafe==1.1.1
Werkzeug==0.15.3
Jinja2==2.10.1
itsdangerous==0.24

View File

@ -2,7 +2,7 @@ import React from 'react';
import moment from 'moment';
import { connect } from 'react-redux';
import { Link } from 'react-router-dom';
import { Icon, Button, Affix, Tag } from 'antd';
import { Icon, Tag } from 'antd';
import ExceptionPage from 'components/ExceptionPage';
import { fetchRfp } from 'modules/rfps/actions';
import { getRfp } from 'modules/rfps/selectors';
@ -153,27 +153,6 @@ export class RFPDetail extends React.Component<Props> {
))}
</div>
)}
{isLive && (
null
// <div className="RFPDetail-submit">
// <Affix offsetBottom={0}>
// <div className="RFPDetail-submit-inner">
// <span>Ready to take on this request?</span>{' '}
// <Link to={`/create?rfp=${rfp.id}`}>
// <Button
// className="RFPDetail-submit-inner-button"
// type="primary"
// size="large"
// >
// Start a Proposal
// <Icon type="right-circle" />
// </Button>
// </Link>
// </div>
// </Affix>
// </div>
)}
</div>
);
}