Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Enubia committed Jul 17, 2023
1 parent fdc3223 commit 117f2a0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion electron/main/trayIcon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ import { AppStore } from '../../shared/types';
export default class TrayIcon {
private tray: Tray;

constructor(private store: ElectronStore<AppStore>, private overlay: BrowserWindow) {}
constructor(
private store: ElectronStore<AppStore>,
private overlay: BrowserWindow,
) {}

buildTray(trayIconPath: string) {
this.tray = new Tray(trayIconPath);
Expand Down

0 comments on commit 117f2a0

Please sign in to comment.