From 144fadf7c63414c18bc83eba01a13995a17067df Mon Sep 17 00:00:00 2001 From: Beebles Date: Sat, 1 Jul 2023 13:47:37 -0600 Subject: [PATCH] fix: Themes without authors no longer have a trailing dot --- components/ManageThemes/ManageThemeCard.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/ManageThemes/ManageThemeCard.tsx b/components/ManageThemes/ManageThemeCard.tsx index 80968e9..ae6f223 100644 --- a/components/ManageThemes/ManageThemeCard.tsx +++ b/components/ManageThemes/ManageThemeCard.tsx @@ -35,7 +35,8 @@ export function ManageThemeCard({ Profile ) : ( <> - {themeData.version} • {themeData.author} + {themeData.version} + {themeData.author ? `• ${themeData.author}` : ""} {updateStatus === "local" ? ( - Local Theme ) : (