X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cf83b358f087a87b5ff095d3ed7a8c6920c60ffe..11a591c335dadfbe56ebf4369b7094227e73342e:/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 0f9f13b595..148c331e29 100644 --- a/src/views/not-found-panel/not-found-panel.tsx +++ b/src/views/not-found-panel/not-found-panel.tsx @@ -2,9 +2,9 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { RootState } from '~/store/store'; +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;