Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/js/components/Drawers/HeaderProfileDrawer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import AppObservableStore, { messageService } from '../../common/stores/AppObser
import SettingsYourData from '../Settings/SettingsYourData';
import SettingsNotifications from '../Settings/SettingsNotifications';
import SettingsSectionFooter from '../Navigation/SettingsSectionFooter';
import historyPush from "../../common/utils/historyPush";
import historyPush from '../../common/utils/historyPush';

// const OpenExternalWebSite = React.lazy(() => import(/* webpackChunkName: 'OpenExternalWebSite' */ '../../common/components/Widgets/OpenExternalWebSite'));
const SignInOptionsPanel = React.lazy(() => import(/* webpackChunkName: 'SignInOptionsPanel' */ '../../common/components/SignIn/SignInOptionsPanel'));
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/Navigation/HeaderBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class HeaderBar extends Component {
more.css(highlight);
break;
case 'more/manage':
more.css(highlight);
more.css(highlight);
break;
default:
break;
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/Settings/SettingsYourData.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import DeleteYourAccountButton from './DeleteYourAccountButton';
import DeleteAllContactsButton from '../SetUpAccount/DeleteAllContactsButton';
import VoterStore from '../../stores/VoterStore';
import BrowserPushMessage from '../Widgets/BrowserPushMessage';
import AppObservableStore from "../../common/stores/AppObservableStore";
import AppObservableStore from '../../common/stores/AppObservableStore';

export default class SettingsYourData extends Component {
constructor (props) {
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/Settings/VoterEmailAddressEntry.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class VoterEmailAddressEntry extends Component {
VoterActions.voterEmailAddressRetrieve();
if (this.emailInputRef && this.emailInputRef.current) {
this.emailInputRef.current.blur();
};
}
this._isMounted = true;
}

Expand Down
2 changes: 1 addition & 1 deletion src/js/components/Share/shareButtonCommon.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ export function ShareTwitter (props) {
}
const twitterRedirectUrl = `https://x.com/intent/post?url=${encodeURIComponent(linkToBeSharedTwitter)}&text=${encodeURIComponent('Please join me and vote.')}`;
const buttonId = twitterButtonRef.current.id;
pushDataLayer(buttonId, 'x.com', 'externalShare', 'ballot', 'twitter',linkToBeSharedTwitter, twitterRedirectUrl);
pushDataLayer(buttonId, 'x.com', 'externalShare', 'ballot', 'twitter', linkToBeSharedTwitter, twitterRedirectUrl);
};

return (
Expand Down
Loading