feat: improve the token edit page

This commit is contained in:
JustSong
2023-04-25 09:24:02 +08:00
parent 336c03a125
commit 5ed4a3d405
3 changed files with 27 additions and 125 deletions

View File

@@ -18,7 +18,6 @@ import { StatusContext } from './context/Status';
import Channel from './pages/Channel';
import Token from './pages/Token';
import EditToken from './pages/Token/EditToken';
import AddToken from './pages/Token/AddToken';
import EditChannel from './pages/Channel/EditChannel';
import AddChannel from './pages/Channel/AddChannel';
@@ -116,7 +115,7 @@ function App() {
path='/token/add'
element={
<Suspense fallback={<Loading></Loading>}>
<AddToken />
<EditToken />
</Suspense>
}
/>