Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanrikulu committed Feb 23, 2024
1 parent 9fa8ad6 commit c0f0aaa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ const logResult = async (request: CFWRequest, result: Response) => {
}
const [streamForLog, streamForResult] = result.body.tee();
try {
const resultForLog: { data: string } = await new Response(streamForLog).json();
const resultForLog: { data: string } = await new Response(
streamForLog
).json();

await tracker.trackEvent(
request,
Expand Down

0 comments on commit c0f0aaa

Please sign in to comment.