Skip to content

Commit

Permalink
feat: increase debunce timing by 2 seconds #3151
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Dec 6, 2024
1 parent 0e426b3 commit 186b556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/connection_bridge/beacon/cubit/beacon_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class BeaconCubit extends Cubit<BeaconState> {
debounce?.cancel();
}

debounce = Timer(const Duration(seconds: 1), () {
debounce = Timer(const Duration(seconds: 2), () {
switch (beaconRequest.type) {
case RequestType.permission:
emit(
Expand Down

0 comments on commit 186b556

Please sign in to comment.