diff options
Diffstat (limited to 'webapp/src/components/game.rs')
-rw-r--r-- | webapp/src/components/game.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webapp/src/components/game.rs b/webapp/src/components/game.rs index 7ade948..45ad035 100644 --- a/webapp/src/components/game.rs +++ b/webapp/src/components/game.rs @@ -77,7 +77,7 @@ pub fn game() -> Html { contract, bidding, }), - Ok(DealInPlayResult::PlayFinished(tricks)) => todo!(), + Ok(DealInPlayResult::PlayFinished(_tricks)) => todo!(), }; } }) @@ -110,8 +110,8 @@ pub fn game() -> Html { } GameState::Play { playing_deal, - contract, - bidding, + contract: _, + bidding: _, } => { html! { <> |