chore: Use proper logger in WelcomeStep instead of console.error

This commit is contained in:
rcourtman 2025-12-13 15:43:13 +00:00
parent c1d9c1bb95
commit 414574739b

View file

@ -1,5 +1,6 @@
import { Component, createSignal, Show } from 'solid-js'; import { Component, createSignal, Show } from 'solid-js';
import { showError, showSuccess } from '@/utils/toast'; import { showError, showSuccess } from '@/utils/toast';
import { logger } from '@/utils/logger';
interface WelcomeStepProps { interface WelcomeStepProps {
onNext: () => void; onNext: () => void;
@ -30,7 +31,7 @@ export const WelcomeStep: Component<WelcomeStepProps> = (props) => {
} }
} }
} catch (error) { } catch (error) {
console.error('Failed to fetch bootstrap info:', error); logger.error('Failed to fetch bootstrap info:', error);
} }
}; };