Skip to content

Commit

Permalink
Merge branch 'main' into feat/fill-size
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 authored Nov 2, 2023
2 parents c0d128b + e35aef1 commit 6ffe4e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/hooks/src/use_animation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ mod test {
assert_eq!(utils.root().get(0).layout().unwrap().width(), 0.0);

// State somewhere in the middle
sleep(Duration::from_millis(32)).await;
sleep(Duration::from_millis(15)).await;
utils.wait_for_update().await;

let width = utils.root().get(0).layout().unwrap().width();
Expand Down
2 changes: 1 addition & 1 deletion crates/hooks/src/use_animation_transition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ mod test {
assert_eq!(utils.root().get(0).layout().unwrap().width(), 0.0);

// State somewhere in the middle
sleep(Duration::from_millis(32)).await;
sleep(Duration::from_millis(15)).await;
utils.wait_for_update().await;

let width = utils.root().get(0).layout().unwrap().width();
Expand Down

0 comments on commit 6ffe4e1

Please sign in to comment.