Fix: linting errors

This commit is contained in:
Evan / Fero 2023-07-14 12:15:53 -07:00
parent d2bdb55c6d
commit 539c213ef6
2 changed files with 3 additions and 3 deletions

View File

@ -398,14 +398,14 @@ export class Window {
} }
// let color: string = theme.backgroundMore // let color: string = theme.backgroundMore
let symbolColor: string = theme.foreground const symbolColor: string = theme.foreground
this.window.setTitleBarOverlay( this.window.setTitleBarOverlay(
{ {
// color: '#00000000', // color: '#00000000',
symbolColor: symbolColor, symbolColor: symbolColor,
height: 32, height: 32,
} },
) )
}) })

View File

@ -175,7 +175,7 @@ export default class ElectronModule {
private updateWindowControlsColor () { private updateWindowControlsColor () {
// if windows and not using native frame, WCO does not exist, return. // if windows and not using native frame, WCO does not exist, return.
if (this.hostApp.platform === Platform.Windows && this.config.store.appearance.frame == "native") { if (this.hostApp.platform === Platform.Windows && this.config.store.appearance.frame === 'native') {
return return
} }