Skip to content

Commit

Permalink
ci: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Feb 1, 2025
1 parent 8488d68 commit 13dd181
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/start-server/src/transformStreamWithRouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ function createPassthrough() {
const res: ReadablePassthrough = {
stream,
write: (chunk) => {
controller.enqueue(encoder.encode(chunk));
controller.enqueue(encoder.encode(chunk))
},
end: (chunk) => {
if (chunk) {
controller.enqueue(encoder.encode(chunk));
controller.enqueue(encoder.encode(chunk))
}
controller.close()
res.destroyed = true
Expand Down

0 comments on commit 13dd181

Please sign in to comment.