fix: lint errors

This commit is contained in:
Bohdan Podvirnyi
2026-01-15 18:13:49 +02:00
committed by Peter Steinberger
parent 0e1dcf9cb4
commit eb7656d68c
10 changed files with 202 additions and 572 deletions

View File

@@ -63,10 +63,7 @@ export async function startTelegramWebhook(opts: {
await bot.api.setWebhook(publicUrl, {
secret_token: opts.secret,
allowed_updates: [
"message",
"message_reaction",
],
allowed_updates: ["message", "message_reaction"],
});
await new Promise<void>((resolve) => server.listen(port, host, resolve));