fix: type errors

This commit is contained in:
Henry
2024-03-24 14:32:41 +00:00
parent 87a05c6208
commit a2541d2f40

View File

@@ -29,7 +29,7 @@ interface BoardData {
interface Label { interface Label {
publicId: string; publicId: string;
name: string; name: string;
colourCode: string; colourCode: string | null;
} }
interface List { interface List {
@@ -43,7 +43,7 @@ interface List {
interface Members { interface Members {
publicId: string; publicId: string;
user: { user: {
name: string; name: string | null;
}; };
} }