From 64391b88c5d0cd3807b7a2a676b4367391b913cb Mon Sep 17 00:00:00 2001 From: barbara-chaves Date: Tue, 30 Apr 2024 11:17:36 +0200 Subject: [PATCH] Remove top stories number --- .../components/map/legend/item-types/choropleth/index.tsx | 2 +- client/src/components/ui/card.tsx | 6 ++++-- client/src/containers/home/index.tsx | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/client/src/components/map/legend/item-types/choropleth/index.tsx b/client/src/components/map/legend/item-types/choropleth/index.tsx index 3723919..310219f 100644 --- a/client/src/components/map/legend/item-types/choropleth/index.tsx +++ b/client/src/components/map/legend/item-types/choropleth/index.tsx @@ -35,7 +35,7 @@ export const LegendTypeChoropleth: React.FC = ({ {items.map(({ color, value }) => (
  • { +const Card = ({ children, title, info, className }: CardProps) => { return (
    { > {title && (
    -

    {title}

    +

    {title}

    + {info && }
    )} {children} diff --git a/client/src/containers/home/index.tsx b/client/src/containers/home/index.tsx index 9346fae..b3f11cd 100644 --- a/client/src/containers/home/index.tsx +++ b/client/src/containers/home/index.tsx @@ -56,7 +56,7 @@ export default function Home() { - +