feat: warn danger actions for dev

This commit is contained in:
三咲智子 2022-11-29 01:46:00 +08:00
parent ef0173a356
commit 259e11c097
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
3 changed files with 24 additions and 5 deletions

View file

@ -61,7 +61,9 @@ export function getReplyDraft(status: Status) {
}
}
export const isEmptyDraft = (draft: Draft) => {
export const isEmptyDraft = (draft: Draft | null | undefined) => {
if (!draft)
return true
const { params, attachments } = draft
const status = params.status || ''
return (status.length === 0 || status === '<p></p>')