Skip to content

Commit c7237b4

Browse files
committed
ptch: Adjust debounce time in BLoC transformer.
Signed-off-by: BURG3R5 <77491630+BURG3R5@users.noreply.github.com>
1 parent a51a5d8 commit c7237b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/utils/bloc_transformer.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import 'package:rxdart/rxdart.dart';
55
Stream<T> Function(Stream<T>, Stream<T> Function(T)) getDebounce<T>() {
66
return (Stream<T> events, Stream<T> Function(T) mapper) {
77
return events
8-
.debounceTime(const Duration(milliseconds: 200))
8+
.debounceTime(const Duration(milliseconds: 100))
99
.switchMap(mapper);
1010
};
1111
}

0 commit comments

Comments
 (0)