mirror of
https://github.com/Lissy93/web-check.git
synced 2025-08-16 23:51:11 +02:00
Update packages, fix pupetter, resolve some TypeScript warnings
This commit is contained in:
@ -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 = '';
|
||||
|
||||
|
@ -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';
|
||||
|
||||
|
@ -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 = `
|
||||
|
@ -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} />
|
||||
))
|
||||
}
|
||||
|
Reference in New Issue
Block a user