wip: Font and logo fixes in progress
- Reverted logo SVG to original viewBox - Applied forum.variable to body for CSS variable - Updated Save button to generate draft from conversation - Logo size and font variables still need fixes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -83,14 +83,18 @@ async function applySchema() {
|
||||
if (result) {
|
||||
console.log(`[Schema] Executed ${result.length} queries`);
|
||||
|
||||
// Log any errors
|
||||
result.forEach((r, i) => {
|
||||
if (r.status === 'ERR') {
|
||||
console.error(`[Schema] Error in query ${i + 1}:`, r.result);
|
||||
} else {
|
||||
console.log(`[Schema] ✓ Query ${i + 1} succeeded`);
|
||||
}
|
||||
});
|
||||
// Log any errors (if results have status property)
|
||||
if (Array.isArray(result)) {
|
||||
result.forEach((r, i) => {
|
||||
if (r && typeof r === 'object') {
|
||||
if (r.status === 'ERR') {
|
||||
console.error(`[Schema] Error in query ${i + 1}:`, r.result);
|
||||
} else if (r.status === 'OK') {
|
||||
console.log(`[Schema] ✓ Query ${i + 1} succeeded`);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
console.log('[Schema] ✓ Schema applied successfully!');
|
||||
|
||||
Reference in New Issue
Block a user