Skip to content

Commit

Permalink
fix(web): better-hide-distupe-template-view-link
Browse files Browse the repository at this point in the history
  • Loading branch information
Harman-singh-waraich committed Feb 5, 2024
1 parent e1e8df6 commit c760ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/layout/Header/navbar/Explore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const StyledLink = styled(Link)<{ isActive: boolean }>`
`;

const HiddenLink = styled(StyledLink)<{ isActive: boolean }>`
color: ${({ isActive, theme }) => (isActive ? theme.primaryText : theme.primaryPurple)};
color: ${({ isActive, theme }) => (isActive ? theme.primaryText : "transparent")};
`;

const links = [
Expand Down

0 comments on commit c760ce8

Please sign in to comment.