We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1512f40 commit e3cd263Copy full SHA for e3cd263
.changeset/lemon-bottles-cover.md
@@ -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
@@ -24,12 +24,10 @@ export class TimeoutFn<T extends AnyFn> {
24
}
25
26
stop() {
27
- console.log("stopping timeout");
28
this.#clear();
29
30
31
start(...args: Parameters<T> | []) {
32
- console.log("starting timeout");
33
34
this.#timer = window.setTimeout(() => {
35
this.#timer = null;
0 commit comments