3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-21 16:55:03 +00:00

made the option nullable

This commit is contained in:
almeidx 2021-08-29 12:37:19 +01:00
parent 48089d1831
commit 50bc5429c1
No known key found for this signature in database
GPG key ID: 8558FBFF849BD664

View file

@ -24,7 +24,7 @@ export const ReplyAction = automodAction({
t.type({
text: tMessageContent,
auto_delete: tNullable(t.union([tDelayString, t.number])),
use_inline_reply: t.boolean,
use_inline_reply: tNullable(t.boolean),
}),
]),