Detected usage of the any type (JS-0323)

This commit is contained in:
Axel Olausson Holtenäs 2022-06-13 14:17:21 +02:00
parent 9a11af4c1e
commit 410442e17b
No known key found for this signature in database
GPG key ID: 7BF6826B76382CBA

View file

@ -29,7 +29,7 @@ export default async (message: Message) => {
await channel?.send(`${author} said **${word}**.`);
logger?.silly(`${author} said ${word} in ${channel}`);
})
?.catch(async (error: any) => {
?.catch(async (error) => {
logger?.error(error);
});
};