diff --git a/CHANGELOG.md b/CHANGELOG.md index 605b46a..9208358 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 4.1.5 - Released on 2025-05-17 + +### Fixes + +- Urgent fix for an accidental `console.log()` in the core. + +
+ ## 4.1.4 - Released on 2025-05-17 ### Fixes diff --git a/package.json b/package.json index 23c0f36..82aa052 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "prismium-src", - "version": "4.1.4", + "version": "4.1.5", "description": "A modern JavaScript accordion library with smooth animations. Easily integrates with React, Vue, and vanilla JavaScript.", "type": "module", "scripts": { diff --git a/src/core/managers/DOMManager.mjs b/src/core/managers/DOMManager.mjs index 5e44ce9..3a3343a 100644 --- a/src/core/managers/DOMManager.mjs +++ b/src/core/managers/DOMManager.mjs @@ -93,7 +93,6 @@ export class DOMManager { */ setTheme(el) { const { theme } = this.instance.options; - console.log(el); if (theme) { if (typeof theme === 'object') {