From 1a125dc530f984d6c16e81a71c8e2afad782d891 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 31 May 2025 19:17:10 +0200 Subject: [PATCH] Comment out unused import in main.js --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index cc38c8d..abf0a96 100644 --- a/main.js +++ b/main.js @@ -1395,7 +1395,7 @@ function buildTrayMenu() { ipcMain.handle('generate-readme', async (evt, folderPath) => { // Hole Author aus Settings oder Default - const store = require('./yourStore'); // oder wie auch immer... + // const store = require('./yourStore'); // oder wie auch immer... const authorName = store.get('author') || 'Unknown'; const licenseType = store.get('license') || 'MIT'; const repoName = path.basename(folderPath);