Skip to content

Commit 54604c4

Browse files
committed
chore: Fix lint errors
1 parent 73cbd61 commit 54604c4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

example.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ const app = createApp({
160160
[HttpStatus.NoContent]: NoResponse,
161161
},
162162
},
163-
({ status, body }) => {
163+
({ status, body: _ }) => {
164164
return status(HttpStatus.NoContent, undefined);
165165
},
166166
)
@@ -174,7 +174,7 @@ const app = createApp({
174174
[HttpStatus.NoContent]: NoResponse,
175175
},
176176
},
177-
({ status, body }) => {
177+
({ status, body: _ }) => {
178178
return status(HttpStatus.NoContent, undefined);
179179
},
180180
)
@@ -188,7 +188,7 @@ const app = createApp({
188188
[HttpStatus.NoContent]: NoResponse,
189189
},
190190
},
191-
({ status, body }) => {
191+
({ status, body: _ }) => {
192192
return status(HttpStatus.NoContent, undefined);
193193
},
194194
);

0 commit comments

Comments
 (0)