trying to make drag and drop work
Some checks failed
/ test (push) Has been cancelled

This commit is contained in:
Chris Cochrun 2025-08-21 15:28:40 -05:00
parent 46794578b3
commit bec21239a5
3 changed files with 31 additions and 23 deletions

View file

@ -221,9 +221,9 @@ impl From<&Value> for ServiceItem {
let song = lisp_to_song(list.clone());
Self::from(&song)
}
_ => todo!(),
_ => ServiceItem::default(),
},
_ => todo!(),
_ => ServiceItem::default(),
}
}
}