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 {
publicId: string;
name: string;
colourCode: string;
colourCode: string | null;
}
interface List {
@@ -43,7 +43,7 @@ interface List {
interface Members {
publicId: string;
user: {
name: string;
name: string | null;
};
}