diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-11-15 15:14:48 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-11-15 15:15:06 -0500 |
commit | 87ede1e2b367a997440626ad9f583600d7cc42fc (patch) | |
tree | a3fd0008714e6d524c2e3b967734a0cfb6cf6cbd /webapp/src/components/game.rs | |
parent | 1f623cca3ea0937508b8c50f4c32a0972271e8f4 (diff) |
Fix rust warnings
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! { <> |