Detected usage of the any
type (JS-0323)
This commit is contained in:
parent
9a11af4c1e
commit
410442e17b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue