aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2018-11-06 21:47:11 +0100
committerRoger Braun <roger@rogerbraun.net>2018-11-06 21:47:11 +0100
commitb6cd4ff32a8abe569fc945d13eb98992b708103c (patch)
tree7298745deeae9b6e88a41a8ac898b6ea6ca47320 /src
parentfbe30b49221d09bd3d6f28ad6edff4a2752642c8 (diff)
Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/boot/after_store.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/after_store.js b/src/boot/after_store.js
index 58361578..65d1ea02 100644
--- a/src/boot/after_store.js
+++ b/src/boot/after_store.js
@@ -91,7 +91,7 @@ const afterStoreSetup = ({store, i18n}) => {
{ name: 'registration', path: '/registration/:token', component: Registration },
{ name: 'friend-requests', path: '/friend-requests', component: FollowRequests },
{ name: 'user-settings', path: '/user-settings', component: UserSettings },
- { name: 'ouath-callback', path: '/oauth-callback', component: OAuthCallback, props: (route) => ({ code: route.query.code }) }
+ { name: 'oauth-callback', path: '/oauth-callback', component: OAuthCallback, props: (route) => ({ code: route.query.code }) }
]
const router = new VueRouter({