Skip to content

Commit

Permalink
comments removed
Browse files Browse the repository at this point in the history
  • Loading branch information
mluena committed Jul 25, 2024
1 parent b6e0e55 commit 8dc367c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/containers/legend/index.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import cn from 'lib/classnames';

type Item = {
export type Item = {
showValue?: boolean;
highlightValue?: boolean;
color: string;
label: string;
color?: string;
label?: string;
labelFormatted?: string;
value?: number;
unit?: string;
valueFormatted?: string;
};

type LegendTypes = {
export type LegendTypes = {
title?: string;
subtitle?: string;
items: Item[];
Expand Down
3 changes: 0 additions & 3 deletions src/containers/locations-list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,8 @@ import { useSearch } from 'hooks/search';

import { useLocation, useLocations } from 'containers/datasets/locations/hooks';
import { Location, LocationTypes } from 'containers/datasets/locations/types';
// import HighlightedPlacesMobile from 'containers/locations-list/mobile/highlighted-places';

// import HighlightedPlaces from 'components/highlighted-places';
import Icon from 'components/ui/icon';
// import { Media } from 'components/media-query';
import { breakpoints } from 'styles/styles.config';

import CLOSE_SVG from 'svgs/ui/close.svg?sprite';
Expand Down

0 comments on commit 8dc367c

Please sign in to comment.