diff --git a/src/commands/autoUpdate.js b/src/commands/autoUpdate.js
index 23bef623..93204a37 100644
--- a/src/commands/autoUpdate.js
+++ b/src/commands/autoUpdate.js
@@ -21,14 +21,14 @@ const cmd: Command = createCommand('main:autoUpdate', () =>
o.next({ status, payload })
}
- const handleDownload = async info => {
+ const handleDownload = async _ => {
try {
sendStatus('checking')
- const appUpdater = await createElectronAppUpdater({
- feedURL: UPDATE_CHECK_FEED,
- updateVersion: info.version,
- })
- await appUpdater.verify()
+ // const appUpdater = await createElectronAppUpdater({
+ // feedURL: UPDATE_CHECK_FEED,
+ // updateVersion: info.version,
+ // })
+ // await appUpdater.verify()
sendStatus('check-success')
} catch (err) {
// don't throw if the check fail for now. it's a white bullet.
diff --git a/src/components/DashboardPage/index.js b/src/components/DashboardPage/index.js
index e7daa927..f3317bb5 100644
--- a/src/components/DashboardPage/index.js
+++ b/src/components/DashboardPage/index.js
@@ -105,6 +105,7 @@ class DashboardPage extends PureComponent {
bannerId={'promoNanoX'}
dismissable
/>
+
p.theme.colors.fog};
+ margin-bottom: 15px;
+ margin-top: -20px;
+`
export default compose(
connect(
diff --git a/src/components/TopBar/index.js b/src/components/TopBar/index.js
index b18914c5..c8f21afc 100644
--- a/src/components/TopBar/index.js
+++ b/src/components/TopBar/index.js
@@ -42,9 +42,7 @@ const Inner = styled(Box).attrs({
grow: true,
flow: 4,
align: 'center',
-})`
- border-bottom: 1px solid ${p => p.theme.colors.fog};
-`
+})``
const Bar = styled.div`
margin-left: 5px;
diff --git a/src/components/layout/Default.js b/src/components/layout/Default.js
index dbe41b7f..14156b39 100644
--- a/src/components/layout/Default.js
+++ b/src/components/layout/Default.js
@@ -43,7 +43,7 @@ const Main = styled(GrowScroll).attrs({
px: 6,
})`
outline: none;
- padding-top: ${p => p.theme.sizes.topBarHeight + p.theme.space[7]}px;
+ padding-top: ${p => p.theme.sizes.topBarHeight + p.theme.space[4]}px;
`
type Props = {