diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-10-06 19:47:58 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-10-06 19:47:58 -0400 |
commit | b10b534ab6507ed2c2d1a62d61f3213397a288e5 (patch) | |
tree | a4b51714e0fe7744ae4d550c1a84e48d81f0fcaa /webapp/src/components/game.rs | |
parent | 806faef4b75173892ecea4ccd4a14178320c89a4 (diff) |
Run `cargo fmt`
Diffstat (limited to 'webapp/src/components/game.rs')
-rw-r--r-- | webapp/src/components/game.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/src/components/game.rs b/webapp/src/components/game.rs index b42f912..34e073c 100644 --- a/webapp/src/components/game.rs +++ b/webapp/src/components/game.rs @@ -1,4 +1,4 @@ -use crate::bridge_engine::{self, Contract, Player, DealInPlay, DealInPlayResult}; +use crate::bridge_engine::{self, Contract, DealInPlay, DealInPlayResult, Player}; use crate::card; use crate::card::Deal; use crate::card::Suit; @@ -119,7 +119,7 @@ pub fn game() -> Html { <TrickInPlay in_progress={ playing_deal.trick_in_play().clone() } /> </> } - }, + } GameState::PassedOut { .. } => html! { <p>{ "Everyone passed" }</p> }, }; |