fixed more lint issues

This commit is contained in:
Boki 2025-06-20 08:27:07 -04:00
parent 43f4429998
commit 5436509ed6
7 changed files with 15 additions and 16 deletions

View file

@ -110,7 +110,7 @@ export class MockServer {
/**
* Handle errors
*/
private handleError(error: Error): Response {
private handleError(_error: Error): Response {
return new Response('Server error', { status: 500 });
}
}