diff --git a/backend/src/plugins/WelcomeMessage/types.ts b/backend/src/plugins/WelcomeMessage/types.ts index eef61be9..8ae13bce 100644 --- a/backend/src/plugins/WelcomeMessage/types.ts +++ b/backend/src/plugins/WelcomeMessage/types.ts @@ -6,7 +6,7 @@ import { GuildLogs } from "src/data/GuildLogs"; export const ConfigSchema = t.type({ send_dm: t.boolean, send_to_channel: tNullable(t.string), - message: t.string, + message: tNullable(t.string), }); export type TConfigSchema = t.TypeOf;