diff --git a/components/status/StatusActions.vue b/components/status/StatusActions.vue index 1a918bc7..2ba53cd6 100644 --- a/components/status/StatusActions.vue +++ b/components/status/StatusActions.vue @@ -79,9 +79,15 @@ const copyLink = async () => { } const deleteStatus = async () => { // TODO confirm to delete + if (process.dev) { + const result = confirm('[DEV] Are you sure you want to delete this post?') + if (!result) + return + } await useMasto().statuses.remove(status.id) - if (route.name === '@user-post') + + if (route.name === '@account-status') router.back() // TODO when timeline, remove this item