mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-04-28 19:41:17 +00:00
chore: Use proper logger in WelcomeStep instead of console.error
This commit is contained in:
parent
6cf2788e61
commit
dea2f62e3a
1 changed files with 2 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
|||
import { Component, createSignal, Show } from 'solid-js';
|
||||
import { showError, showSuccess } from '@/utils/toast';
|
||||
import { logger } from '@/utils/logger';
|
||||
|
||||
interface WelcomeStepProps {
|
||||
onNext: () => void;
|
||||
|
|
@ -30,7 +31,7 @@ export const WelcomeStep: Component<WelcomeStepProps> = (props) => {
|
|||
}
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Failed to fetch bootstrap info:', error);
|
||||
logger.error('Failed to fetch bootstrap info:', error);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue