Skip to content

Commit

Permalink
Fix ESLint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
myrotvorets-team committed Mar 26, 2024
1 parent 0f2a15f commit b651f16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.mts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export async function run(): Promise<void> {

const server = await createServer(app);
server.on('close', () => {
container.dispose().catch((e) => console.error(e));
container.dispose().catch((e: unknown) => console.error(e));
});
}
/* c8 ignore stop */

0 comments on commit b651f16

Please sign in to comment.