Skip to content

Commit

Permalink
fix(dev-middleware): respond with status code 200 when successfully…
Browse files Browse the repository at this point in the history
… launching RNDT
  • Loading branch information
byCedric committed Oct 3, 2024
1 parent 2b1b370 commit 2f3beeb
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ export default function openDebuggerMiddleware({
{launchId, useFuseboxEntryPoint},
),
);
res.writeHead(200);
res.end();
break;
case 'redirect':
Expand Down

0 comments on commit 2f3beeb

Please sign in to comment.