From f7571f6df118c57d3af373cf577cf7c35b84f38b Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 12 Dec 2022 16:25:55 +0800 Subject: [PATCH] Need to show media attachments even when status size=s This is because status is optional when there are media attachments So if the status is empty, there's nothing to show at all lololol --- src/components/status.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/status.jsx b/src/components/status.jsx index 9e046e41..07984ee4 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -727,7 +727,7 @@ function Status({ content )} - {!!mediaAttachments.length && size !== 's' && ( + {!!mediaAttachments.length && (
{mediaAttachments.map((media, i) => (