fix: type error

This commit is contained in:
monoid 2025-04-10 21:37:26 +09:00
parent 5a09d5b070
commit 80b4028ec7

6
app.ts
View file

@ -162,10 +162,8 @@ async function main() {
return;
}
const success = await oauth2Api.deleteOauth2Application(appId);
if (success) {
console.log("OAuth2 application deleted successfully!");
}
await oauth2Api.deleteOauth2Application(appId);
console.log("OAuth2 application deleted successfully!");
})
.command("update", "Update OAuth2 application")
.action(async () => {