diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a6542b3d..51fbd36c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,14 +10,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). * Build for both architectures (x86 and x64) for Windows ([#1262](https://github.com/lbryio/lbry-app/pull/1262)) * Add referral FAQ to Invites screen([#1314](https://github.com/lbryio/lbry-app/pull/1314)) * Show exact wallet balance on mouse hover over ([#1305](https://github.com/lbryio/lbry-app/pull/1305)) + * New dark mode ([#1269](https://github.com/lbryio/lbry-app/pull/1269)) ### Changed - * Add flair to snackbar ([#1313](https://github.com/lbryio/lbry-app/pull/1313)) ### Fixed * Black screen on macOS after maximizing LBRY and then closing ([#1235](https://github.com/lbryio/lbry-app/pull/1235)) +### Fixed + * Black screen on macOS after maximizing LBRY and then closing ([#1235](https://github.com/lbryio/lbry-app/pull/1235)) + * Fix dark theme ([#1034](https://github.com/lbryio/lbry-app/issues/1034)) + * Fix download percentage indicator overlay ([#1271](https://github.com/lbryio/lbry-app/issues/1271)) ## [0.21.2] - 2018-03-22 diff --git a/src/renderer/component/common/icon.jsx b/src/renderer/component/common/icon.jsx index 1f82f3351..602f5fbd2 100644 --- a/src/renderer/component/common/icon.jsx +++ b/src/renderer/component/common/icon.jsx @@ -8,7 +8,6 @@ const RED_COLOR = '#e2495e'; type Props = { icon: string, - size?: number, }; class IconComponent extends React.PureComponent { diff --git a/src/renderer/component/header/view.jsx b/src/renderer/component/header/view.jsx index b31441add..1cbdceb13 100644 --- a/src/renderer/component/header/view.jsx +++ b/src/renderer/component/header/view.jsx @@ -53,6 +53,7 @@ const Header = (props: Props) => {