diff options
Diffstat (limited to 'webapp/src/components/trick_in_play.rs')
-rw-r--r-- | webapp/src/components/trick_in_play.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/components/trick_in_play.rs b/webapp/src/components/trick_in_play.rs index 883a3c1..e5790a3 100644 --- a/webapp/src/components/trick_in_play.rs +++ b/webapp/src/components/trick_in_play.rs @@ -20,7 +20,7 @@ pub fn trick_in_play(props: &TrickInPlayProps) -> Html { }; html! { <div class={class}> - <Card card={ card.clone() } /> + <Card card={*card} /> </div> } }); |