Skip to content

Commit

Permalink
Merge remote-tracking branch 'github-desktop-setchy/master' into buil…
Browse files Browse the repository at this point in the history
…d/use-biomejs
  • Loading branch information
setchy committed Jun 25, 2024
2 parents c3c5125 + 9e5cb86 commit 2db6f0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.8.2/schema.json",
"organizeImports": {
"enabled": true
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"electron-positioner": "^4.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.1",
"@biomejs/biome": "1.8.2",
"@amaurym/config": "^1.3.5",
"@types/jest": "^25.2.3",
"electron": "^29.1.6",
Expand Down
2 changes: 1 addition & 1 deletion src/util/getWindowPosition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export function getWindowPosition(tray: Tray): WindowPosition {
return isLinux ? 'topRight' : 'trayCenter';
}
if (traySide === 'bottom') {
return isLinux ? 'bottomRight' : 'trayBottomCenter';
return 'bottomRight';
}
if (traySide === 'left') {
return 'bottomLeft';
Expand Down

0 comments on commit 2db6f0c

Please sign in to comment.