Skip to content

Commit

Permalink
SDP-897: Remove Stellar logo from Page Header (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliaromao authored Oct 6, 2023
1 parent d13cf63 commit 1020c32
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/PageHeader/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable jsx-a11y/anchor-is-valid */
import { Button, Icon, Logo, ThemeSwitch } from "@stellar/design-system";
import { Button, Icon, ThemeSwitch } from "@stellar/design-system";
import { PROJECT_NAME, Routes } from "constants/settings";
import { DropdownMenu } from "components/DropdownMenu";
import { formatDateTimeWithGmt } from "helpers/formatIntlDateTime";
Expand All @@ -22,7 +22,7 @@ export const PageHeader = ({
<div className={`PageHeader ${username ? "PageHeader--internal" : ""}`}>
<div className="PageHeader__inset">
<div className="PageHeader__logo">
{username ? (
{username && (
<div className="CompanyBrand">
<div
className="CompanyBrand__logo"
Expand All @@ -32,8 +32,6 @@ export const PageHeader = ({
{companyName || "Company Name"}
</div>
</div>
) : (
<Logo.Stellar />
)}
</div>
</div>
Expand Down

0 comments on commit 1020c32

Please sign in to comment.