Fix: route path

This commit is contained in:
Lazy 2023-11-17 15:28:06 +08:00
parent 3cdd61234c
commit bd9f3272b2

View File

@ -116,13 +116,13 @@ const handleChangeNode = async (item: NodeStatus) => {
const toCreateAppPage = () => {
router.push({
path: `/quickstart`
path: "/quickstart"
});
};
const toNodesPage = () => {
router.push({
path: "node"
path: "/node"
});
};