diff --git a/package-lock.json b/package-lock.json index 66caef39022..1983c868a0a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,6 @@ "@styled-system/css": "5.1.5", "@styled-system/props": "5.1.5", "@styled-system/theme-get": "5.1.2", - "@types/history": "4.7.8", "@types/styled-components": "5.1.11", "@types/styled-system": "5.1.12", "@types/styled-system__css": "5.0.16", @@ -11303,11 +11302,6 @@ "@types/unist": "*" } }, - "node_modules/@types/history": { - "version": "4.7.8", - "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.8.tgz", - "integrity": "sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA==" - }, "node_modules/@types/hoist-non-react-statics": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", @@ -45495,11 +45489,6 @@ "@types/unist": "*" } }, - "@types/history": { - "version": "4.7.8", - "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.8.tgz", - "integrity": "sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA==" - }, "@types/hoist-non-react-statics": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", diff --git a/src/stories/AvatarStack.stories.tsx b/src/stories/AvatarStack.stories.tsx index 298a9fd7f27..58d61de429f 100644 --- a/src/stories/AvatarStack.stories.tsx +++ b/src/stories/AvatarStack.stories.tsx @@ -1,4 +1,5 @@ import AvatarStack from '../AvatarStack' +import Avatar from '../Avatar' import {Meta} from '@storybook/react' import React from 'react' import {ThemeProvider} from '..' @@ -27,10 +28,10 @@ export default meta export function AvatarStackStory(): JSX.Element { return ( - - - - + + + + ) }