Hello, I'm using the basic messageCommandDenied code provided in the sapphire docs and it has been working up until today but upon booting up one of my bots I get the following error:
Property 'send' does not exist on type 'PartialGroupDMChannel'.
15 return message.channel.send(error.message);
~~~~
Found 1 error in src/listeners/messageCommandDenied.ts:15```
The code I use for this event is directly ripped from the docs here: https://www.sapphirejs.dev/docs/Guide/preconditions/reporting-precondition-failure
```import {
Events,
Listener,
type MessageCommandDeniedPayload,
type UserError,
} from "@sapphire/framework";
export class MessageCommandDenied extends Listener<
typeof Events.MessageCommandDenied
> {
public run(error: UserError, { message }: MessageCommandDeniedPayload) {
return message.channel.send(error.message);
}
}