Skip to content

Commit

Permalink
fix: default tick = 0
Browse files Browse the repository at this point in the history
  • Loading branch information
muedsa committed Nov 15, 2023
1 parent 5281571 commit 4670968
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fun AppCloseHandler(
) {

var allowBack by remember { mutableStateOf(false) }
var tick by remember { mutableIntStateOf(8) }
var tick by remember { mutableIntStateOf(0) }

LaunchedEffect(key1 = tick) {
delay(250)
Expand Down

0 comments on commit 4670968

Please sign in to comment.