refactor(activation): clean up ActivationModal component and remove unused pages

- Removed the `onComplete` prop from the `ActivationModal` component to streamline its functionality.
- Deleted several unused pages including `apikeys.vue`, `changelog.vue`, `flashbackup.vue`, `index.vue`, `login.query.ts`, `login.vue`, `redirect.vue`, `welcome.vue`, `apikeyauthorize.vue`, and `test-update-modal.vue` to improve codebase maintainability.
- This update enhances the clarity and performance of the application by eliminating unnecessary files and simplifying the component structure.
This commit is contained in:
Eli Bosley
2025-10-15 15:45:26 -04:00
parent b2d89b2506
commit f612aaa710

View File

@@ -222,7 +222,6 @@ const currentStepProps = computed<Record<string, unknown>>(() => {
...baseProps,
currentVersion: currentVersion.value,
previousVersion: previousVersion.value,
onComplete: closeModal,
onSkip: undefined,
showSkip: false,
};