add hidename switch

This commit is contained in:
SethBurkart123
2024-04-07 15:13:55 +10:00
parent b7e7c24727
commit 7c9896a128
3 changed files with 23 additions and 4 deletions
+4 -1
View File
@@ -61,7 +61,10 @@ export const ThemeCover: React.FC<ThemeCoverProps> = ({
className="absolute inset-0 z-0 object-cover"
/>
}
<div className="z-10">{theme.name}</div>
{
theme.hideThemeName ? <></> :
<div className="z-10">{theme.name}</div>
}
</div>
</button>
);