removed gaurd from script

This commit is contained in:
Philip Ellis
2023-09-06 10:24:41 -05:00
parent 812e951453
commit 24e5a0f416

View File

@@ -115,7 +115,7 @@ async function main() {
try { try {
const response = await getCollections(); const response = await getCollections();
for (let collection of response.collections) { for (let collection of response.collections) {
if (collection.name.includes(args[3]) && collection.id == "b108a9b1-e5ec-4a83-b4f5-02fd7126bbfc") { if (collection.name.includes(args[3])) {
console.log(collection); console.log(collection);
const response = await deleteCollection(collection.id); const response = await deleteCollection(collection.id);
console.log(response); console.log(response);