mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 13:08:01 +02:00
parent
8945c11f02
commit
faef667189
11 changed files with 1020 additions and 885 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue