fix(todos): types union TodoCreate, gestion erreurs handlers, transition SwipeableRow réactive
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -23,8 +23,8 @@ export interface TodoCreate {
|
||||
domain?: string
|
||||
category?: string
|
||||
tags?: string[]
|
||||
status?: string
|
||||
priority?: string
|
||||
status?: 'pending' | 'done' | 'cancelled'
|
||||
priority?: 'low' | 'medium' | 'high'
|
||||
due_date?: string
|
||||
}
|
||||
|
||||
@@ -35,8 +35,8 @@ export interface TodoUpdate {
|
||||
domain?: string
|
||||
category?: string
|
||||
tags?: string[]
|
||||
status?: string
|
||||
priority?: string
|
||||
status?: 'pending' | 'done' | 'cancelled'
|
||||
priority?: 'low' | 'medium' | 'high'
|
||||
due_date?: string
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user