Skip to content

Commit 144fadf

Browse files
author
Beebles
committed
fix: Themes without authors no longer have a trailing dot
1 parent 8525973 commit 144fadf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/ManageThemes/ManageThemeCard.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ export function ManageThemeCard({
3535
<span>Profile</span>
3636
) : (
3737
<>
38-
{themeData.version}{themeData.author}
38+
{themeData.version}
39+
{themeData.author ? `• ${themeData.author}` : ""}
3940
{updateStatus === "local" ? (
4041
<span className="text-fore-9-dark"> - Local Theme</span>
4142
) : (

0 commit comments

Comments
 (0)