diff --git a/ui/src/pages/Join.vue b/ui/src/pages/Join.vue index 3e4386d..233ad70 100644 --- a/ui/src/pages/Join.vue +++ b/ui/src/pages/Join.vue @@ -12,7 +12,7 @@ import { } from '@/components/ui/stepper' import { useUserStore } from '@/stores/user'; import { Check, Circle, Dot, Users, X } from 'lucide-vue-next' -import { computed } from 'vue'; +import { computed, ref } from 'vue'; import Application from './Application.vue'; function goToLogin() { @@ -69,6 +69,8 @@ const currentStep = computed(() => { break; } }) + +const finalPanel = ref<'app' | 'message'>('message');