visuddhinanda 2 лет назад
Родитель
Сommit
e170b5a61d
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      dashboard/src/reducers/discussion.ts

+ 2 - 0
dashboard/src/reducers/discussion.ts

@@ -4,6 +4,7 @@
 import { createSlice, PayloadAction } from "@reduxjs/toolkit";
 
 import { TResType } from "../components/discussion/DiscussionListCard";
+import { ISentence } from "../components/template/SentEdit";
 
 import type { RootState } from "../store";
 
@@ -15,6 +16,7 @@ export interface IShowDiscussion {
   resId?: string;
   topic?: string;
   comment?: string;
+  sent?: ISentence;
 }
 export interface ICount {
   count: number;