summaryrefslogtreecommitdiff
path: root/webapp/src/components/game.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-10-06 19:47:58 -0400
committerKjetil Orbekk <kj@orbekk.com>2022-10-06 19:47:58 -0400
commitb10b534ab6507ed2c2d1a62d61f3213397a288e5 (patch)
treea4b51714e0fe7744ae4d550c1a84e48d81f0fcaa /webapp/src/components/game.rs
parent806faef4b75173892ecea4ccd4a14178320c89a4 (diff)
Run `cargo fmt`
Diffstat (limited to 'webapp/src/components/game.rs')
-rw-r--r--webapp/src/components/game.rs4
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> },
};