X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/011705a4f293a0f5737c021b1ad2c5c87cd0cb03..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 0f9f13b5..148c331e 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;