Fix TypeScript typecheck errors

This commit is contained in:
Codex Agent
2026-01-30 15:56:06 +01:00
parent d4162dd105
commit b3bf45482a
42 changed files with 324 additions and 72 deletions

View File

@@ -324,7 +324,7 @@ function EventsList({
<ToggleGroup
type="single"
value={statusFilter}
onValueChange={(value) => value && onStatusChange(value as EventStatusKey)}
onValueChange={(value: string) => value && onStatusChange(value as EventStatusKey)}
>
<XStack space="$1.5">
{filters.map((filter) => {