We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47b849b commit 180d2e2Copy full SHA for 180d2e2
2 files changed
public/electron.js
@@ -5,7 +5,7 @@ const path = require("path");
5
const isDev = require("electron-is-dev");
6
let mainWindow;
7
8
-function createWindow() {
+const createWindow = () => {
9
mainWindow = new BrowserWindow({
10
webPreferences: {
11
nodeIntegration: true
@@ -34,7 +34,7 @@ function createWindow() {
34
event.preventDefault();
35
electron.shell.openExternal(arg);
36
});
37
-}
+};
38
39
app.on("ready", createWindow);
40
public/index.html
@@ -7,7 +7,7 @@
<meta name="theme-color" content="#000000" />
<meta
name="description"
- content="Web site created using create-react-app"
+ content="File and text hash calculator"
/>
12
<link rel="apple-touch-icon" href="logo192.png" />
13
<!--
0 commit comments