Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bholmesdev committed May 6, 2024
1 parent 23f3a87 commit fdc3a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/stream/src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const onRequest = defineMiddleware(async (ctx, next) => {
const flushedChunk = flushableChunks.get(id) ?? chunk;
try {
streamController.enqueue({ id, chunk: flushedChunk });
} catch (e) {
} catch (e) {
streamController.error(e);
}
flushableChunks.delete(id);
Expand Down

0 comments on commit fdc3a48

Please sign in to comment.