summaryrefslogtreecommitdiff
path: root/webapp/src/components/trick_in_play.rs
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/trick_in_play.rs')
-rw-r--r--webapp/src/components/trick_in_play.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/src/components/trick_in_play.rs b/webapp/src/components/trick_in_play.rs
index 086a422..c034d20 100644
--- a/webapp/src/components/trick_in_play.rs
+++ b/webapp/src/components/trick_in_play.rs
@@ -1,5 +1,5 @@
use yew::prelude::*;
-use crate::bridge_engine::PlayTurn;
+use crate::bridge_engine::TurnInPlay;
use crate::components::Card;
#[function_component(TrickInPlay)]
@@ -19,5 +19,5 @@ html! {
#[derive(PartialEq, Properties, Clone)]
pub struct TrickInPlayProps {
- pub in_progress: PlayTurn,
+ pub in_progress: TurnInPlay,
}