Skip to content

Commit 8bb2d0a

Browse files
committed
Fix auth order
1 parent d6cb96c commit 8bb2d0a

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

web/components/FirebaseAuth.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ export default class FirebaseAuth extends Vue {
6767
signInSuccessUrl: this.$store.getters.getAppData.url,
6868
signInOptions: [
6969
// Leave the lines as is for the providers you want to offer your users.
70-
ProviderId.GOOGLE,
7170
ProviderId.GITHUB,
71+
ProviderId.GOOGLE,
7272
ProviderId.PASSWORD,
7373
],
7474
// Terms of service url.

web/pages/index.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Http SMS
77
</h2>
88
<v-spacer></v-spacer>
9-
<v-btn class="primary" large :to="{ name: 'login' }">
9+
<v-btn exact-path class="primary" large :to="{ name: 'login' }">
1010
Get Started
1111
<span v-if="$vuetify.breakpoint.lgAndUp">&nbsp;For Free</span>
1212
</v-btn>
@@ -32,6 +32,7 @@
3232
<v-btn
3333
color="primary"
3434
large
35+
exact-path
3536
class="mt-4 mb-4"
3637
:to="{ name: 'login' }"
3738
>

0 commit comments

Comments
 (0)