Skip to content

Commit 508acdf

Browse files
committed
Open desktop app to login screen, not home page
1 parent b33474f commit 508acdf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

apps/desktop/CHANGELOG

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [1.0.0-beta.2] - 2025-08-04
88

9-
### Added
9+
### Changed
1010
- Open external links in the system default browser.
11+
- Open login page on app start instead of home page
1112

1213
## [1.0.0-beta.1] - 2025-07-31
1314

apps/desktop/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const createMainWindow = () => {
7070
}
7171
})
7272

73-
mainWindow.loadURL(HOST)
73+
mainWindow.loadURL(HOST + '/login')
7474

7575
mainWindow.once('ready-to-show', () => mainWindow.show())
7676

@@ -181,7 +181,7 @@ app.whenReady().then(async () => {
181181
// Request notification permissions explicitly
182182
if (systemPreferences.isTrustedAccessibilityClient(false)) {
183183
systemPreferences.registerDefaults({
184-
'NSUserNotificationAlertStyle': 'alert'
184+
NSUserNotificationAlertStyle: 'alert'
185185
})
186186
}
187187

0 commit comments

Comments
 (0)