This commit is contained in:
Sean Morley
2024-08-07 16:34:03 -04:00
parent a87797f6af
commit 4f3edec9f1
3 changed files with 10 additions and 3 deletions

View File

@@ -55,10 +55,10 @@
});
if (res.ok) {
console.log('Collection deleted');
addToast('info', 'Adventure deleted successfully!');
addToast('info', 'Collection deleted successfully!');
dispatch('delete', collection.id);
} else {
console.log('Error deleting adventure');
console.log('Error deleting collection');
}
}