diff --git a/src/components/atoms/Time.tsx b/src/components/atoms/Time.tsx index d78746aad..8d18e5608 100644 --- a/src/components/atoms/Time.tsx +++ b/src/components/atoms/Time.tsx @@ -13,7 +13,9 @@ export default function Time({ const dateNew = isUnix ? new Date(Number(date) * 1000) : new Date(date) const dateIso = dateNew.toISOString() - return ( + return !date ? ( + <> + ) : (