Skip to content

Commit 64b56eb

Browse files
authored
Merge pull request #13 from koirodev/next
fix(core): Urgent fix for an accidental `console.log()` in the core.
2 parents f0b35df + 7b3cd28 commit 64b56eb

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 4.1.5 - Released on 2025-05-17
2+
3+
### Fixes
4+
5+
- Urgent fix for an accidental `console.log()` in the core.
6+
7+
<br>
8+
19
## 4.1.4 - Released on 2025-05-17
210

311
### Fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prismium-src",
3-
"version": "4.1.4",
3+
"version": "4.1.5",
44
"description": "A modern JavaScript accordion library with smooth animations. Easily integrates with React, Vue, and vanilla JavaScript.",
55
"type": "module",
66
"scripts": {

src/core/managers/DOMManager.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ export class DOMManager {
9393
*/
9494
setTheme(el) {
9595
const { theme } = this.instance.options;
96-
console.log(el);
9796

9897
if (theme) {
9998
if (typeof theme === 'object') {

0 commit comments

Comments
 (0)