Skip to content

Commit

Permalink
feat(settings): default open at startup (#152)
Browse files Browse the repository at this point in the history
feat: default openAtStartup

Signed-off-by: Adam Setch <adam.setch@outlook.com>
  • Loading branch information
setchy authored Sep 27, 2024
1 parent d36b70b commit d2ede6a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__mocks__/state-mocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const mockSystemSettings = {
showSystemNotifications: true,
playSoundNewNotifications: true,
useAlternateIdleIcon: false,
openAtStartup: false,
openAtStartup: true,
};

const mockFilters = {
Expand Down
2 changes: 1 addition & 1 deletion src/context/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const defaultSystemSettings = {
showSystemNotifications: true,
playSoundNewNotifications: true,
useAlternateIdleIcon: false,
openAtStartup: false,
openAtStartup: true,
};

export const defaultFilters = {
Expand Down
5 changes: 5 additions & 0 deletions src/routes/__snapshots__/Settings.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d2ede6a

Please sign in to comment.