From 5f50df17214fbc29295fb82d83b0bc5f01f1b76b Mon Sep 17 00:00:00 2001
From: Lim Chee Aun
Date: Sat, 4 Nov 2023 15:36:13 +0800
Subject: [PATCH] Replace provider/author fallback with published date
---
src/components/status.jsx | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/components/status.jsx b/src/components/status.jsx
index 211beff6..44eadf81 100644
--- a/src/components/status.jsx
+++ b/src/components/status.jsx
@@ -1762,7 +1762,10 @@ function Card({ card, instance }) {
{title}
- {description || providerName || authorName}
+ {description ||
+ (!!publishedAt && (
+
+ ))}