From 33720d96947c16b46ded2149b68d3e9fea9f9245 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 27 Jun 2023 22:02:10 +0800 Subject: [PATCH] Show muted/blocked tags on account info --- src/components/account-info.jsx | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/src/components/account-info.jsx b/src/components/account-info.jsx index 91fd45af..da2c399b 100644 --- a/src/components/account-info.jsx +++ b/src/components/account-info.jsx @@ -524,18 +524,22 @@ function RelatedActions({ info, instance, authenticated }) {

- {followedBy ? ( - Following you - ) : !!lastStatusAt ? ( - - Last post:{' '} - {niceDateTime(lastStatusAt, { - hideTime: true, - })} - - ) : ( - - )}{' '} + + {followedBy ? ( + Following you + ) : !!lastStatusAt ? ( + + Last post:{' '} + {niceDateTime(lastStatusAt, { + hideTime: true, + })} + + ) : ( + + )} + {muting && Muted} + {blocking && Blocked} + {' '}