From 26f5881f43c81f0872c29fce0cf88fa99bd4fe1e Mon Sep 17 00:00:00 2001 From: Will Hohyon Ryu Date: Thu, 7 Mar 2024 19:41:59 -0800 Subject: [PATCH] chore: remove unnecessary error handling in main function --- src/main.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main.ts b/src/main.ts index 2912379..63ab5df 100644 --- a/src/main.ts +++ b/src/main.ts @@ -69,7 +69,4 @@ async function main() { } } -main().catch((error) => { - console.error("Error:", error); - process.exit(1); -}); +main();