X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/25216cc7acedc987c26a159f0b640210c0ef101e..8045851b13e03215f3f2c8be6d54b43bd4619862:/src/views/not-found-panel/not-found-panel.tsx diff --git a/src/views/not-found-panel/not-found-panel.tsx b/src/views/not-found-panel/not-found-panel.tsx index d1fb3f99..148c331e 100644 --- a/src/views/not-found-panel/not-found-panel.tsx +++ b/src/views/not-found-panel/not-found-panel.tsx @@ -4,7 +4,7 @@ import { RootState } from 'store/store'; import { connect } from 'react-redux'; -import { NotFoundPanelRoot, NotFoundPanelRootDataProps, NotFoundPanelOwnProps } from 'views/not-found-panel/not-found-panel-root'; +import { NotFoundPanelRoot, NotFoundPanelRootDataProps } from 'views/not-found-panel/not-found-panel-root'; const mapStateToProps = (state: RootState): NotFoundPanelRootDataProps => { return { @@ -15,5 +15,5 @@ const mapStateToProps = (state: RootState): NotFoundPanelRootDataProps => { const mapDispatchToProps = null; -export const NotFoundPanel = connect(mapStateToProps, mapDispatchToProps) - (NotFoundPanelRoot); +export const NotFoundPanel = connect(mapStateToProps, mapDispatchToProps) + (NotFoundPanelRoot) as any;