diff --git a/components/AbuseReports.vue b/components/AbuseReports.vue index 80d4499b0..a04ea0a06 100644 --- a/components/AbuseReports.vue +++ b/components/AbuseReports.vue @@ -72,7 +72,7 @@ export default { .join(', '); }, async handleReport(id) { - await this.$confirm('Are you sure you want to mark this report as handled?', 'success'); + // await this.$confirm('Are you sure you want to mark this report as handled?', 'success'); await this.$post(`/admin/reports/handle/${id}`); this.abuseReports = this.abuseReports.map(r => { if (r.id === id) { r.isHandled = true; }