Update packages, fix pupetter, resolve some TypeScript warnings

This commit is contained in:
Alicia Sykes
2023-07-22 15:44:03 +01:00
parent dd0be7ed05
commit 049fb8da95
8 changed files with 29 additions and 21 deletions

View File

@ -1,6 +1,6 @@
import { Card } from 'components/Form/Card';
import Row, { ExpandableRow, RowProps } from 'components/Form/Row';
import Row, { RowProps } from 'components/Form/Row';
const cardStyles = '';

View File

@ -1,6 +1,5 @@
import { Card } from 'components/Form/Card';
import Heading from 'components/Form/Heading';
import Row, { ExpandableRow } from 'components/Form/Row';
import colors from 'styles/colors';

View File

@ -2,7 +2,6 @@
import styled from 'styled-components';
import { Card } from 'components/Form/Card';
import Heading from 'components/Form/Heading';
import Row, { ExpandableRow, RowProps } from 'components/Form/Row';
import colors from 'styles/colors';
const cardStyles = `

View File

@ -32,8 +32,8 @@ const MapChart = (location: Props) => {
stroke={colors.primary}
strokeWidth={0.5}
>
{({ geographies }) =>
geographies.map((geo) => (
{({ geographies }: any) =>
geographies.map((geo: any) => (
<Geography key={geo.rsmKey} geography={geo} />
))
}