Skip to content

Commit e3cd263

Browse files
authored
fix: removed leftover console.log from timeout-fn.ts (#1794)
1 parent 1512f40 commit e3cd263

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.changeset/lemon-bottles-cover.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"bits-ui": patch
3+
---
4+
5+
fix: removed leftover console.logs in timeout-fn.ts

packages/bits-ui/src/lib/internal/timeout-fn.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,10 @@ export class TimeoutFn<T extends AnyFn> {
2424
}
2525

2626
stop() {
27-
console.log("stopping timeout");
2827
this.#clear();
2928
}
3029

3130
start(...args: Parameters<T> | []) {
32-
console.log("starting timeout");
3331
this.#clear();
3432
this.#timer = window.setTimeout(() => {
3533
this.#timer = null;

0 commit comments

Comments
 (0)