aboutsummaryrefslogtreecommitdiff
path: root/src/storage/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/index.ts')
-rw-r--r--src/storage/index.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/storage/index.ts b/src/storage/index.ts
index 631fc2e..c3c97d8 100644
--- a/src/storage/index.ts
+++ b/src/storage/index.ts
@@ -152,7 +152,6 @@ export class Storage {
};
await writeFile(join(requestDir, 'request.json'), JSON.stringify(stored, null, 2));
- await writeFile(join(requestDir, 'body.json'), JSON.stringify(body, null, 2));
return Either.right(stored);
} catch (err) {
return Either.left(err instanceof Error ? err : new Error(String(err)));