mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Fix messed up control flow with navigation brandpill
This commit is contained in:
parent
551a4367d1
commit
9d658e8f8d
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ export function BrandPill(props: {
|
||||||
<span
|
<span
|
||||||
className={[
|
className={[
|
||||||
"font-semibold text-white",
|
"font-semibold text-white",
|
||||||
isMobile || props.header ? "hidden sm:block" : "",
|
isMobile && props.header ? "hidden sm:block" : "",
|
||||||
].join(" ")}
|
].join(" ")}
|
||||||
>
|
>
|
||||||
{t("global.name")}
|
{t("global.name")}
|
||||||
|
|
Loading…
Reference in a new issue