Skip to content

Commit

Permalink
wip: ci-13
Browse files Browse the repository at this point in the history
  • Loading branch information
EmbraceAn committed Nov 4, 2024
1 parent 21f532e commit aef1e4f
Show file tree
Hide file tree
Showing 12 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/App/routers/routers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
TaskCenterIcon,
} from '@/assets/menu';

import TaskList from '@/pages/TaskList';
import TaskPageList from '@/pages/TaskPageList';
import TaskScript from '@/pages/TaskScript';
import TaskDetail from '@/pages/TaskDetail';

Expand Down Expand Up @@ -47,7 +47,7 @@ const routers: RouteObjectRootMy[] = [
children: [
{
index: true,
element: <TaskList />,
element: <TaskPageList />,
},
{
path: 'detail/:id',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { StartUpScriptModal as CreateTaskModal } from '../TaskScript/compoment/S

const { Group } = Radio;

const TaskList: FC = () => {
const TaskPageList: FC = () => {
const [page] = WizardTable.usePage();

const openCreateTaskModalRef = useRef<UseModalRefType>(null);
Expand Down Expand Up @@ -207,4 +207,4 @@ const TaskList: FC = () => {
);
};

export { TaskList };
export { TaskPageList };
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions src/pages/TaskPageList/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { TaskPageList } from './TaskPageList';

export default TaskPageList;
File renamed without changes.
File renamed without changes.
3 changes: 0 additions & 3 deletions src/pages/taskList/index.ts

This file was deleted.

0 comments on commit aef1e4f

Please sign in to comment.