Skip to content
This repository has been archived by the owner on Feb 5, 2023. It is now read-only.

Commit

Permalink
chore: opt out test route
Browse files Browse the repository at this point in the history
  • Loading branch information
Candinya committed Sep 6, 2021
1 parent ca29531 commit 053dd4d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/router.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createRouter, createWebHistory } from 'vue-router';

import Index from '@/views/Index.vue';
import Test from '@/views/Test.vue';
// import Test from '@/views/Test.vue';
import Home from '@/views/Home.vue';
import Followings from '@/views/Followings.vue';
import Followers from '@/views/Followers.vue';
Expand All @@ -21,10 +21,10 @@ const routes = [
path: '/',
component: Index,
},
{
path: '/test',
component: Test,
},
// {
// path: '/test',
// component: Test,
// },
{
path: '/:address',
component: Home,
Expand Down

0 comments on commit 053dd4d

Please sign in to comment.