mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-21 08:22:19 +00: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