Skip to content

Commit

Permalink
removed text color change
Browse files Browse the repository at this point in the history
  • Loading branch information
denniwang committed Feb 13, 2025
1 parent fa38aeb commit f9213f7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/frontend/src/components/map/MapLegend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ const FullWidthSpace = styled(Space)`
width: 100%;
`;
const statusSpan = (statusIcon: string, labelString: string): ReactNode => {
const isInvalid = labelString.toLowerCase().includes('invalid');
return (
<FullWidthSpace direction={'horizontal'} size={'small'}>
<LegendImage
Expand All @@ -187,7 +186,7 @@ const statusSpan = (statusIcon: string, labelString: string): ReactNode => {
letterSpacing: '0em',
textAlign: 'left',
alignItems: 'center',
color: isInvalid ? '#808080' : 'rgba(24, 112, 188, 1)',
color: 'rgba(24, 112, 188, 1)',
}}
>
{labelString.replace(' Sites', '').toUpperCase()}
Expand Down

0 comments on commit f9213f7

Please sign in to comment.