Skip to content

Commit

Permalink
delete unnecesary div
Browse files Browse the repository at this point in the history
  • Loading branch information
itcreativeusa committed Oct 8, 2024
1 parent ef85030 commit 055aed8
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import stringContains from '../../utils/stringContains';
import CandidateStore from '../../../stores/CandidateStore';
import MeasureStore from '../../../stores/MeasureStore';
import SupportStore from '../../../stores/SupportStore';
import PayToPromoteProcess from '../CampaignSupport/PayToPromoteProcess';

// const PayToPromoteProcess = React.lazy(() => import(/* webpackChunkName: 'PayToPromoteProcess' */ './PayToPromoteProcess')); // eslint-disable-line import/no-cycle

Expand Down Expand Up @@ -183,11 +182,8 @@ class BoostLearnMoreModal extends Component {
// console.log('BoostLearnMoreModal render, voter_address_object: ', voter_address_object);
const textFieldJSX = (
<TextFieldWrapper>
<PayToPromoteProcess
campaignXWeVoteId={campaignXWeVoteId}
chipInPaymentValueDefault="1.00"
lowerDonations
/>

<div>Learn more content here</div>
</TextFieldWrapper>
);

Expand All @@ -196,9 +192,9 @@ class BoostLearnMoreModal extends Component {
// dialogTitleJSX={<>{dialogTitleText}</>} commented because it is not working but can restore if needed
show={show}
dialogTitleJSX={<div>Learn More</div>}
textFieldJSX={<div>Learn more content here</div>}
//textFieldJSX={<div>Learn more content here</div>}
// tallMode commented because it is not working but can restore if needed
// textFieldJSX={textFieldJSX} commented because it is not working but can restore if needed
textFieldJSX={textFieldJSX}
toggleModal={this.props.toggleModal}
/>
);
Expand Down

0 comments on commit 055aed8

Please sign in to comment.