Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
add explicit logging
Browse files Browse the repository at this point in the history
  • Loading branch information
horacioh committed Nov 13, 2023
1 parent 274454f commit df0b17e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/apps/desktop/src/root.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,8 @@ body {

.split-view-view {
height: 100%;
}
}

::-webkit-scrollbar {
display: none !important;
}
2 changes: 2 additions & 0 deletions frontend/apps/desktop/src/update.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {updateElectronApp} from 'update-electron-app'
import log from 'electron-log/main'

export function setupUpdates() {
// We delay this work by 1s to ensure that the
Expand All @@ -7,6 +8,7 @@ export function setupUpdates() {
updateElectronApp({
repo: 'MintterHypermedia/mintter',
updateInterval: '1 hour',
logger: log,
})
}, 1000)
}

0 comments on commit df0b17e

Please sign in to comment.