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

@ -97,6 +97,12 @@ const deleteStatus = async () => {
const deleteAndRedraft = async () => {
// TODO confirm to delete
if (process.dev) {
// eslint-disable-next-line no-alert
const result = confirm('[DEV] Are you sure you want to delete and re-draft this post?')
if (!result)
return
}
const { text } = await useMasto().statuses.remove(status.id)
openPublishDialog('dialog', getDraftFromStatus(status, text), true)