diff --git a/js/basicAuth/index.js b/js/basicAuth/index.js index 8ed6425c..e210ed97 100644 --- a/js/basicAuth/index.js +++ b/js/basicAuth/index.js @@ -7,6 +7,7 @@ const path = require('path'); const fs = require('fs'); const log = require('../log.js'); const logLevels = require('../enums/logLevels.js'); +const { isMac } = require('../utils/misc'); let basicAuthWindow; @@ -14,7 +15,7 @@ const local = {}; let windowConfig = { width: 360, - height: 270, + height: isMac ? 270 : 295, show: false, modal: true, autoHideMenuBar: true,