From d4698f11fa97329ee9af8aff8736ad343625342f Mon Sep 17 00:00:00 2001 From: Observer KRypt0n_ Date: Wed, 13 Oct 2021 17:18:54 +0200 Subject: [PATCH] Added semicolons for the require statements in entry file --- entry.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entry.js b/entry.js index 54fa802..1db86e0 100644 --- a/entry.js +++ b/entry.js @@ -1,5 +1,5 @@ -const { app, BrowserWindow } = require('electron') -const path = require('path') +const { app, BrowserWindow } = require('electron'); +const path = require('path'); function createWindow () {