Skip to content

Commit a60662c

Browse files
committed
Fix sign in on mobile
1 parent a514f87 commit a60662c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web/components/FirebaseAuth.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ export default class FirebaseAuth extends Vue {
6363
},
6464
},
6565
// Will use popup for IDP Providers sign-in flow instead of the default, redirect.
66-
signInFlow: 'popup',
67-
signInSuccessUrl: this.$store.getters.getAppData.url,
66+
signInFlow: this.$vuetify.breakpoint.mdAndDown ? 'redirect' : 'popup',
67+
signInSuccessUrl: this.$store.getters.getAppData.url + '/login',
6868
signInOptions: [
6969
// Leave the lines as is for the providers you want to offer your users.
7070
ProviderId.GITHUB,

0 commit comments

Comments
 (0)