Skip to content

Commit

Permalink
fix: Index merge data error
Browse files Browse the repository at this point in the history
  • Loading branch information
swgvenghy committed Aug 5, 2024
1 parent b71b06f commit cb8c8fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/routes/admin-routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import React from 'react';
import { Route, Routes } from 'react-router-dom';
import PrivateRoute from './private-route';
import FileList from '../ui/pages/admin/file-list';
import AdminLayout from '../ui/components/molecule/admin/Layout/admin-layout';
import Login from '../ui/pages/admin/login';
import QuestionCheck from '../ui/pages/admin/question-check';
import AdminLayout from '../ui/components/admin/Layout/admin-layout';

const AdminRoutes: React.FC = () => {
const token = sessionStorage.getItem('Authorization');
Expand Down
2 changes: 1 addition & 1 deletion src/ui/pages/page-test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import AdminLayout from '../components/admin/Layout/admin-layout';
import ChatForm from '../components/molecule/user/chat-form/chat-form';
import ChatCard from '../components/atom/chat-card/chat-card';

const PageTest: React.FC = () => {
return (
Expand Down

0 comments on commit cb8c8fe

Please sign in to comment.