Stop reactively tracking status in toggle queue

This commit is contained in:
Connor Wittman 2024-03-01 00:51:41 -05:00 committed by Ethan Girouard
parent 8507b536ec
commit bf47efbff7
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146

View File

@ -326,7 +326,7 @@ fn QueueToggle(status: RwSignal<PlayStatus>) -> impl IntoView {
let update_queue = move |_| {
toggle_queue(status);
log!("queue button pressed, queue status: {:?}", status.with(|status| status.queue_open));
log!("queue button pressed, queue status: {:?}", status.with_untracked(|status| status.queue_open));
};
// We use this to prevent the buttons from being focused when clicked