fix: change is_active type from number to boolean to match API response

This commit is contained in:
Marko Djordjevic 2026-02-17 19:59:48 +01:00
parent a75c9307d4
commit 4352732630
8 changed files with 14 additions and 14 deletions

View file

@ -153,7 +153,7 @@ interface SpanLabelType {
display_name: string;
color: string;
hotkey: string | null;
is_active: number;
is_active: boolean;
sort_order: number;
created_at: number;
}