From 04588874c7b2305308b7e1eb6aa0cd07761c8b5d Mon Sep 17 00:00:00 2001 From: COxDE <63153334+coxde@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:38:55 +0100 Subject: [PATCH] fix: enable/disable boosts button logic --- src/components/account-info.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/account-info.jsx b/src/components/account-info.jsx index 1704e446..5eff593f 100644 --- a/src/components/account-info.jsx +++ b/src/components/account-info.jsx @@ -1159,8 +1159,8 @@ function RelatedActions({ setRelationshipUIState('default'); showToast( rel.showingReblogs - ? `Boosts from @${username} disabled.` - : `Boosts from @${username} enabled.`, + ? `Boosts from @${username} enabled.` + : `Boosts from @${username} disabled.`, ); } catch (e) { alert(e);