chore: Fix lint warnings in SetupWizard and add AI API docs

- Fixed unused variables in wizard components
- Fixed invalid aiEnabled field in FeaturesStep (AI uses separate API)
- Added AI endpoints section to API.md
This commit is contained in:
rcourtman 2025-12-13 15:36:40 +00:00
parent 3497780426
commit 5e2311035b
5 changed files with 40 additions and 9 deletions

View file

@ -58,7 +58,7 @@ export const WelcomeStep: Component<WelcomeStepProps> = (props) => {
props.setIsUnlocked(true);
showSuccess('Token verified!');
props.onNext();
} catch (error) {
} catch (_error) {
showError('Invalid bootstrap token. Please check and try again.');
} finally {
setIsValidating(false);