Fix card colors

This commit is contained in:
2025-02-08 17:27:32 -05:00
parent 62b7552609
commit c96d78db5f
4 changed files with 33 additions and 8 deletions

View File

@@ -14,7 +14,10 @@ export function useConfig() {
throw new Error('Failed to load configuration')
}
const text = await response.text()
console.log('Raw YAML:', text.substring(0, 500) + '...') // Show first 500 chars
const parsed = yaml.load(text) as Config
console.log('Parsed config sections:', parsed.sections)
console.log('First service cardStyle:', parsed.services[0]?.cardStyle)
setConfig(parsed)
setError(null)
} catch (err) {