Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update banner to Ned's Steem Needs You post #3066

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/components/elements/Announcement.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import React from 'react';
export const Announcement = ({ onClose }) => (
<div className="annoucement-banner">
<p className="announcement-banner__text">
HF20 Update: Operations Stable, click{' '}
Steem needs your votes to win big.{' '}
<a
className="announcement-banner__link"
href="https://steemit.com/steem/@steemitblog/hf20-update-operations-stable"
href="https://steemit.com/steem/@ned/steem-needs-you"
>
here.
Learn more.
</a>
</p>
<button className="close-button" type="button" onClick={onClose}>
Expand Down
4 changes: 2 additions & 2 deletions src/app/redux/UserSaga.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ function* usernamePasswordLogin(action) {
(typeof sessionStorage !== 'undefined' &&
sessionStorage.getItem('hideAnnouncement') !== 'true')
) {
// Uncomment to re-enable announcment
// Comment to disable announcment
// TODO: use config to enable/disable
// yield put(userActions.showAnnouncement());
yield put(userActions.showAnnouncement());
}

// Sets 'loading' while the login is taking place. The key generation can take a while on slow computers.
Expand Down