fix linter error

This commit is contained in:
Anton Bracke
2022-02-22 10:49:35 +01:00
parent 3779c4b7db
commit d03544c839
2 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import { BrowserWindow } from "electron";
import serve from "electron-serve";
import path from "path";
let customScheme = serve({ directory: path.resolve(__dirname, "..", "local-app", "dist") });
const customScheme = serve({ directory: path.resolve(__dirname, "..", "local-app", "dist") });
export async function loadCustomScheme(window: BrowserWindow) {
await customScheme(window);