Skip to content

Commit

Permalink
Teacher Tool: Remove rubric name from header bar
Browse files Browse the repository at this point in the history
  • Loading branch information
thsparks committed May 1, 2024
1 parent 1234c4f commit 7307ed0
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions teachertool/src/components/HeaderBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,6 @@ export const HeaderBar: React.FC<HeaderBarProps> = () => {
);
};

const getRubricName = (): JSX.Element | null => {
const rubricName = getSafeRubricName(teacherTool);
return rubricName ? (
<div className={css["rubric-name"]}>
<span>{rubricName}</span>
</div>
) : null;
};

const onHomeClicked = () => {
pxt.tickEvent(Ticks.HomeLink);

Expand All @@ -103,7 +94,6 @@ export const HeaderBar: React.FC<HeaderBarProps> = () => {
<div className={css["left-menu"]}>
{getOrganizationLogo()}
{getTargetLogo()}
{getRubricName()}
</div>

<div className={css["right-menu"]}>
Expand Down

0 comments on commit 7307ed0

Please sign in to comment.