From 4e6745553bd607417e796bcb6820af1c9270e7a3 Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Wed, 3 Dec 2025 17:44:41 -0500 Subject: [PATCH] added application view to final stage of onboarding --- ui/src/pages/Join.vue | 195 +++++++++++++++++++++++------------------- 1 file changed, 107 insertions(+), 88 deletions(-) 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');