diff --git a/src/components/account-info.jsx b/src/components/account-info.jsx index 73b1be9f..82002287 100644 --- a/src/components/account-info.jsx +++ b/src/components/account-info.jsx @@ -227,18 +227,28 @@ function AccountInfo({ )}
- {
- hideAllModals();
- }}
- >
- Posts
-
-
- {shortenNumber(statusesCount)}
- {' '}
-
+ {standalone ? (
+
+ Posts
+
+
+ {shortenNumber(statusesCount)}
+ {' '}
+
+ ) : (
+ {
+ hideAllModals();
+ }}
+ >
+ Posts
+
+
+ {shortenNumber(statusesCount)}
+ {' '}
+
+ )}
Following