File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import ChatPage from 'pages/Chat/ChatPage';
1818import UploadPage from 'pages/Upload/UploadPage' ;
1919import ReportsListPage from 'pages/Reports/ReportsListPage' ;
2020import ReportDetailPage from 'pages/Reports/ReportDetailPage' ;
21- import Processing from 'pages/Processing/Processing ' ;
21+ import ProcessingPage from 'pages/Processing/ProcessingPage ' ;
2222
2323/**
2424 * The `TabNavigation` component provides a router outlet for all of the
@@ -92,7 +92,7 @@ const TabNavigation = (): JSX.Element => {
9292 < ReportDetailPage />
9393 </ Route >
9494 < Route exact path = "/tabs/processing" >
95- < Processing />
95+ < ProcessingPage />
9696 </ Route >
9797 < Route exact path = "/" >
9898 < Redirect to = "/tabs/home" />
File renamed without changes.
Original file line number Diff line number Diff line change @@ -4,15 +4,15 @@ import Avatar from '../../common/components/Icon/Avatar';
44import { useLocation , useHistory } from 'react-router-dom' ;
55import { useEffect , useState , useRef } from 'react' ;
66import { useAxios } from '../../common/hooks/useAxios' ;
7- import './Processing .scss' ;
7+ import './ProcessingPage .scss' ;
88import { getAuthConfig } from 'common/api/reportService' ;
99const API_URL = import . meta. env . VITE_BASE_URL_API || '' ;
1010
1111/**
1212 * Processing page that shows while the system analyzes uploaded documents
1313 * This page automatically displays after a successful upload
1414 */
15- const Processing : React . FC = ( ) => {
15+ const ProcessingPage : React . FC = ( ) => {
1616 const currentUser = useCurrentUser ( ) ;
1717 const firstName = currentUser ?. name ?. split ( ' ' ) [ 0 ] ;
1818 const axios = useAxios ( ) ;
@@ -166,4 +166,4 @@ const Processing: React.FC = () => {
166166 ) ;
167167} ;
168168
169- export default Processing ;
169+ export default ProcessingPage ;
You can’t perform that action at this time.
0 commit comments