diff --git a/client/app/queue/QueueApp.jsx b/client/app/queue/QueueApp.jsx index 484ca797b9b..989299e439c 100644 --- a/client/app/queue/QueueApp.jsx +++ b/client/app/queue/QueueApp.jsx @@ -110,7 +110,7 @@ import EditAppellantInformation from './editAppellantInformation/EditAppellantIn import EditPOAInformation from './editPOAInformation/EditPOAInformation'; import NotificationsView from './NotificationsView'; import CavcDashboard from './cavcDashboard/CavcDashboard'; -import ErrorsFoundAndCorrectedModal from '../hearings/components/ErrorsFoundAndCorrectedModal'; +import ErrorsFoundAndCorrectedModal from './components/ErrorsFoundAndCorrectedModal'; class QueueApp extends React.PureComponent { componentDidMount = () => { diff --git a/client/app/hearings/components/ErrorsFoundAndCorrectedModal.jsx b/client/app/queue/components/ErrorsFoundAndCorrectedModal.jsx similarity index 100% rename from client/app/hearings/components/ErrorsFoundAndCorrectedModal.jsx rename to client/app/queue/components/ErrorsFoundAndCorrectedModal.jsx diff --git a/client/test/app/hearings/components/ErrorsFoundAndCorrectedModal.test.js b/client/test/app/queue/components/ErrorsFoundAndCorrectedModal.test.js similarity index 96% rename from client/test/app/hearings/components/ErrorsFoundAndCorrectedModal.test.js rename to client/test/app/queue/components/ErrorsFoundAndCorrectedModal.test.js index d88464d8400..54d24ecb50a 100644 --- a/client/test/app/hearings/components/ErrorsFoundAndCorrectedModal.test.js +++ b/client/test/app/queue/components/ErrorsFoundAndCorrectedModal.test.js @@ -3,7 +3,7 @@ import { render, screen, waitFor } from '@testing-library/react'; import userEvent from '@testing-library/user-event'; import { axe } from 'jest-axe'; -import ErrorsFoundAndCorrectedModal from 'app/hearings/components/ErrorsFoundAndCorrectedModal'; +import ErrorsFoundAndCorrectedModal from 'app/queue/components/ErrorsFoundAndCorrectedModal'; describe('ErrorsFoundAndCorrectedModal', () => { const closeModal = jest.fn(); diff --git a/client/test/app/hearings/components/__snapshots__/ErrorsFoundAndCorrectedModal.test.js.snap b/client/test/app/queue/components/__snapshots__/ErrorsFoundAndCorrectedModal.test.js.snap similarity index 100% rename from client/test/app/hearings/components/__snapshots__/ErrorsFoundAndCorrectedModal.test.js.snap rename to client/test/app/queue/components/__snapshots__/ErrorsFoundAndCorrectedModal.test.js.snap