chore: remove unnecessary error handling in main function

This commit is contained in:
Will Hohyon Ryu 2024-03-07 19:41:59 -08:00
commit 26f5881f43

View file

@ -69,7 +69,4 @@ async function main() {
} }
} }
main().catch((error) => { main();
console.error("Error:", error);
process.exit(1);
});