fix(renderer): add missing closing brace for redo IPC handler

The ipcRenderer.on('redo') callback was missing its closing });
introduced in a9e05d2, causing SyntaxError: Unexpected end of input.

Amit Haridas
This commit is contained in:
2026-06-03 14:36:59 +05:30
parent 96df5652d6
commit 0192590567
+2
View File
@@ -2041,6 +2041,8 @@ ipcRenderer.on('redo', () => {
redo(tab.editorView); redo(tab.editorView);
} }
} }
});
// Custom Preview CSS event handlers and trigger helpers // Custom Preview CSS event handlers and trigger helpers
function applyCustomPreviewCSS(cssContent) { function applyCustomPreviewCSS(cssContent) {
let styleTag = document.getElementById('custom-preview-style'); let styleTag = document.getElementById('custom-preview-style');