From 1538400dc0fa744d4942becf4788de02f5f2dc57 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 20 Dec 2022 10:09:05 +0800 Subject: [PATCH] Oops, forgot to put confirm dialog before boosting --- src/components/status.jsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/status.jsx b/src/components/status.jsx index 23b76b57..0bdd79c1 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -455,6 +455,14 @@ function Status({ count={reblogsCount} onClick={async () => { try { + if (!reblogged) { + const yes = confirm( + 'Are you sure that you want to boost this post?', + ); + if (!yes) { + return; + } + } // Optimistic states.statuses.set(id, { ...status,