Skip to content

Commit 5739173

Browse files
committed
Got donations working again.
Pulled some of the abandoned files into a new srcDeprecated directory that is not compiled. Got sign in with SMS working again.
1 parent fbca149 commit 5739173

37 files changed

+2824
-1883
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
src/js/vendor/*.js
22
src/js/mock-data/
33
src/js/dispatcher/Dispatcher.js
4+
srcDeprecated
File renamed without changes.

src/App.jsx

-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ const CandidateForExtension = React.lazy(() => import(/* webpackChunkName: 'Cand
2525
const ClaimYourPage = React.lazy(() => import(/* webpackChunkName: 'ClaimYourPage' */ './js/routes/Settings/ClaimYourPage'));
2626
const Credits = React.lazy(() => import(/* webpackChunkName: 'Credits' */ './js/routes/More/Credits'));
2727
const Donate = React.lazy(() => import(/* webpackChunkName: 'Donate' */ './js/routes/More/Donate'));
28-
const DonateThankYou = React.lazy(() => import(/* webpackChunkName: 'DonateThankYou' */ './js/routes/More/DonateThankYou'));
2928
const ElectionReminder = React.lazy(() => import(/* webpackChunkName: 'ElectionReminder' */ './js/routes/More/ElectionReminder'));
3029
const Elections = React.lazy(() => import(/* webpackChunkName: 'Elections' */ './js/routes/More/Elections'));
3130
const ExtensionSignIn = React.lazy(() => import(/* webpackChunkName: 'ExtensionSignIn' */ './js/routes/More/ExtensionSignIn'));
@@ -98,7 +97,6 @@ class App extends Component {
9897
this.state = {
9998
// doShowHeader: true,
10099
// doShowFooter: true,
101-
// isInitialized: false,
102100
showReadyLight: true,
103101
};
104102
// this.setShowHeader = this.setShowHeader.bind(this);
@@ -261,8 +259,6 @@ class App extends Component {
261259
<Route path="/more/credits" component={Credits} />
262260
<Route path="/more/donate" component={isNotWeVoteMarketingSite ? ReadyRedirect : Donate} />
263261
<Route path="/more/donate" component={isNotWeVoteMarketingSite ? ReadyRedirect : Donate} />
264-
<Route path="/more/donate_thank_you" component={isNotWeVoteMarketingSite ? ReadyRedirect : DonateThankYou} />
265-
<Route path="/more/donate_thank_you" component={isNotWeVoteMarketingSite ? ReadyRedirect : DonateThankYou} />
266262
<Route path="/more/elections" component={Elections} />
267263
<Route path="/more/elections" component={Elections} />
268264
<Route path="/more/extensionsignin" component={ExtensionSignIn} />
Loading
+6
Loading

0 commit comments

Comments
 (0)