diff --git a/desktop/flipper-server/src/index.tsx b/desktop/flipper-server/src/index.tsx index 17f5935aa..afb383163 100644 --- a/desktop/flipper-server/src/index.tsx +++ b/desktop/flipper-server/src/index.tsx @@ -344,9 +344,7 @@ process.on('unhandledRejection', (reason, promise) => { ); }); -start() - .then(() => {}) - .catch((e) => { - console.error(chalk.red('Server startup error: '), e); - process.exit(1); - }); +start().catch((e) => { + console.error(chalk.red('Server startup error: '), e); + process.exit(1); +});