Skip to content

Commit

Permalink
chore: lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
rupansh committed Feb 1, 2024
1 parent f9dd314 commit 7fb3b22
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/page/post_view/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ pub fn ScrollingView() -> impl IntoView {
let muted = create_rw_signal(true);
let trigger_unmute = move || {
muted.set(false);
if let Some(v) = video_ref.get() { v.set_muted(false) }
if let Some(v) = video_ref.get() {
v.set_muted(false)
}
};

view! {
Expand Down

0 comments on commit 7fb3b22

Please sign in to comment.