fix: type errors
This commit is contained in:
@@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user