We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a893bf commit 15f4515Copy full SHA for 15f4515
1 file changed
backend/src/plugins/Common/types.ts
@@ -2,8 +2,8 @@ import { BasePluginType } from "knub";
2
import z from "zod/v4";
3
4
export const zCommonConfig = z.strictObject({
5
- success_emoji: z.string().default("✅"),
6
- error_emoji: z.string().default("❌"),
+ success_emoji: z.string().nullable().default(null),
+ error_emoji: z.string().nullable().default(null),
7
attachment_storing_channel: z.nullable(z.string()).default(null),
8
});
9
0 commit comments