Browse Source

note: string | null;

visuddhinanda 2 years ago
parent
commit
e7e47f53eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dashboard/src/components/term/TermList.tsx

+ 1 - 1
dashboard/src/components/term/TermList.tsx

@@ -28,7 +28,7 @@ interface IItem {
   channel?: IChannel;
   meaning: string;
   meaning2: string;
-  note: string;
+  note: string | null;
   createdAt: number;
 }