Skip to content

Commit

Permalink
fix: Themes without authors no longer have a trailing dot
Browse files Browse the repository at this point in the history
  • Loading branch information
Beebles committed Jul 1, 2023
1 parent 8525973 commit 144fadf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/ManageThemes/ManageThemeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ export function ManageThemeCard({
<span>Profile</span>
) : (
<>
{themeData.version}{themeData.author}
{themeData.version}
{themeData.author ? `• ${themeData.author}` : ""}
{updateStatus === "local" ? (
<span className="text-fore-9-dark"> - Local Theme</span>
) : (
Expand Down

0 comments on commit 144fadf

Please sign in to comment.