summaryrefslogtreecommitdiff
path: root/webapp/src/components/game.rs
diff options
context:
space:
mode:
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> },
};