From 26f5d4c685948ae7879225036600080c2e5bfc67 Mon Sep 17 00:00:00 2001 From: Tulio Leao Date: Wed, 1 Nov 2023 07:45:23 -0300 Subject: [PATCH] Remove unused variable from #1018 (#1030) * Remove unused variable from #1018 * Amend changelog to include fix from #1011 --- changelog.md | 1 + js/menus.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 38f39f02b..9e5eab7bd 100644 --- a/changelog.md +++ b/changelog.md @@ -3,6 +3,7 @@ - Enhancement [#1009]: Adding an animation to the workday waiver holidays table when the contents switch +- Fix [#1008]: Sourced conflicting holidays being imported by default diff --git a/js/menus.js b/js/menus.js index de66265d5..b75457db5 100644 --- a/js/menus.js +++ b/js/menus.js @@ -1,6 +1,6 @@ 'use strict'; -const { app, BrowserWindow, clipboard, dialog, shell, ipcMain } = require('electron'); +const { app, BrowserWindow, clipboard, dialog, shell } = require('electron'); const path = require('path'); const Store = require('electron-store');