From 29d5ac94b2e3c3281cbecc5699f42e2168ec16f2 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 29 Jan 2026 13:17:12 +0100 Subject: [PATCH] activation: remove unused setupToken --- dashboard/src/views/ActivationView.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/dashboard/src/views/ActivationView.vue b/dashboard/src/views/ActivationView.vue index 2b4f964b7..f0bb5093e 100644 --- a/dashboard/src/views/ActivationView.vue +++ b/dashboard/src/views/ActivationView.vue @@ -13,7 +13,6 @@ const displayName = ref(''); const email = ref(''); const username = ref(''); const password = ref(''); -const setupToken = ref(''); const acceptLicense = ref(false); const form = useTemplateRef('form'); @@ -33,7 +32,6 @@ async function onOwnerSubmit() { password: password.value, email: email.value, displayName: displayName.value, - setupToken: setupToken.value, }; const [error, result] = await provisionModel.createAdmin(data);