Skip to content

Commit 5dcf5d5

Browse files
authored
revert: trailing comma in clipboard_button.dart
1 parent d10387a commit 5dcf5d5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/src/toolbar/buttons/clipboard_button.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ class ClipboardMonitor {
2929

3030
if (add) {
3131
_timer = Timer.periodic(
32-
const Duration(seconds: 1),
33-
(timer) => _update(listener),
34-
);
32+
const Duration(seconds: 1), (timer) => _update(listener));
3533
} else {
3634
_timer?.cancel();
3735
}

0 commit comments

Comments
 (0)