Refactor: update project status values to use consistent capitalization; enhance app configuration for preview environment

This commit is contained in:
2025-12-24 14:30:19 +01:00
parent 00a5c34f36
commit 02ecf80cb9
15 changed files with 226 additions and 195 deletions

View File

@@ -1,9 +1,9 @@
export function useProjectColors() {
const statusColors: Record<string, string> = {
'active': 'blue',
'completed': 'green',
'archived': 'neutral',
'in progress': 'amber'
'Active': 'blue',
'Completed': 'green',
'Archived': 'neutral',
'In Progress': 'amber'
}
const typeColors: Record<string, string> = {