Skip to content

Commit

Permalink
Fix last step
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaAutumn committed Jun 26, 2024
1 parent f264da5 commit de7a3eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions frontend/src/components/FTUE/Finish.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ onMounted(async () => {
const onSubmit = async () => {
isLoading.value = true;
// Can't run async together!
await userStore.finishFTUE(call);
await userStore.profile(call);
await nextStep();
// Yeet them to calendar!
window.location = '/calendar';
Expand Down
1 change: 0 additions & 1 deletion frontend/src/stores/user-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { i18n } from '@/composables/i18n';
import { computed } from 'vue';

const initialUserObject = {
setup: false,
email: null,
preferredEmail: null,
level: null,
Expand Down

0 comments on commit de7a3eb

Please sign in to comment.