fix(desktop): remove unused availableProviders destructuring

Fixes eslint no-unused-vars warning that fails CI with --max-warnings 0.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jiayuan Zhang 2026-02-11 00:16:02 +08:00
parent 7af64a12e2
commit ff7395960d

View file

@ -12,7 +12,7 @@ import { useOnboardingStore } from '../../stores/onboarding'
export default function SetupStep() {
const navigate = useNavigate()
const { providers, availableProviders, current, loading, error, refresh, setProvider } =
const { providers, current, loading, error, refresh, setProvider } =
useProvider()
const { setProviderConfigured } = useOnboardingStore()