mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-11 17:55:33 +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
|
||||
className={[
|
||||
"font-semibold text-white",
|
||||
isMobile || props.header ? "hidden sm:block" : "",
|
||||
isMobile && props.header ? "hidden sm:block" : "",
|
||||
].join(" ")}
|
||||
>
|
||||
{t("global.name")}
|
||||
|
|
|
|||
Loading…
Reference in a new issue