Skip to content

Commit

Permalink
resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
luacmartins committed Nov 25, 2021
1 parent 4aeec90 commit 77a41fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 20 deletions.
15 changes: 1 addition & 14 deletions src/pages/ReimbursementAccount/EnableStep.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,10 @@ import bankAccountPropTypes from '../../components/bankAccountPropTypes';
import confettiPop from '../../../assets/images/confetti-pop.gif';
import Icon from '../../components/Icon';
import WorkspaceSection from '../workspace/WorkspaceSection';
<<<<<<< HEAD
import {ConciergeBlue} from '../../components/Icon/Illustrations';
import {requestResetFreePlanBankAccount} from '../../libs/actions/BankAccounts';
import {openOldDotLink} from '../../libs/actions/Link';
import {subscribeToExpensifyCardUpdates} from '../../libs/actions/User';
=======
import * as Illustrations from '../../components/Icon/Illustrations';
import * as BankAccounts from '../../libs/actions/BankAccounts';
import * as Link from '../../libs/actions/Link';
import * as User from '../../libs/actions/User';
import CONST from '../../CONST';
>>>>>>> dd291dcda (Merge pull request #6479 from Expensify/cmartins-encodeURL)

const propTypes = {
/** Are we loading payment methods? */
Expand Down Expand Up @@ -84,13 +76,8 @@ class EnableStep extends React.Component {
title: this.props.translate('workspace.bankAccount.addWorkEmail'),
icon: Mail,
onPress: () => {
<<<<<<< HEAD
openOldDotLink('settings?param={"section":"account","openModal":"secondaryLogin"}');
openOldDotLink(CONST.ADD_SECONDARY_LOGIN_URL);
subscribeToExpensifyCardUpdates();
=======
Link.openOldDotLink(CONST.ADD_SECONDARY_LOGIN_URL);
User.subscribeToExpensifyCardUpdates();
>>>>>>> dd291dcda (Merge pull request #6479 from Expensify/cmartins-encodeURL)
},
shouldShowRightIcon: true,
});
Expand Down
7 changes: 1 addition & 6 deletions src/pages/workspace/card/WorkspaceCardVBANoECardView.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,8 @@ const WorkspaceCardVBANoECardView = props => (
title: props.translate('workspace.card.addWorkEmail'),
onPress: () => {
Navigation.dismissModal();
<<<<<<< HEAD
openOldDotLink('settings?param={"section":"account","openModal":"secondaryLogin"}');
openOldDotLink(CONST.ADD_SECONDARY_LOGIN_URL);
subscribeToExpensifyCardUpdates();
=======
Link.openOldDotLink(CONST.ADD_SECONDARY_LOGIN_URL);
User.subscribeToExpensifyCardUpdates();
>>>>>>> dd291dcda (Merge pull request #6479 from Expensify/cmartins-encodeURL)
},
icon: Mail,
shouldShowRightIcon: true,
Expand Down

0 comments on commit 77a41fe

Please sign in to comment.