- closes #129
- closes #130
- minor cleanup
This commit is contained in:
Shiny Nematoda 2023-06-13 12:26:48 +00:00 committed by vrifox
parent cb414ef489
commit a296b66430
No known key found for this signature in database
GPG key ID: D40098E5B60B2197
11 changed files with 1020 additions and 885 deletions

View file

@ -108,7 +108,13 @@ const shuffleAdd = () => {
}
},
removePlaylist = async id => {
if (!id && !prompt('Confirm?')) return;
const consent = confirm('Confirm?');
console.log(id, consent);
if (!id || !consent) return;
console.log(id, consent);
if (useVerifyAuth(id)) {
const { message } = await useAuthRemovePlaylist(id);