浏览代码

:fire: console.log

visuddhinanda 3 年之前
父节点
当前提交
88abe64cff
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      dashboard/src/components/template/Wbw/CaseFormula.tsx

+ 0 - 2
dashboard/src/components/template/Wbw/CaseFormula.tsx

@@ -29,7 +29,6 @@ const CaseFormulaWidget = ({ data, onChange, onCaseChange }: IWidget) => {
       setFormula([]);
       return;
     }
-    console.log("grammar", grammar);
     let result = inlineDict.wordList.filter(
       (word) => word.word === "_formula_" && word.grammar === grammar
     );
@@ -40,7 +39,6 @@ const CaseFormulaWidget = ({ data, onChange, onCaseChange }: IWidget) => {
         (word) => word.word === "_formula_" && word.grammar === grammar
       );
     }
-    console.log("inline dict ", result);
     let strFormula: string;
     if (result.length > 0) {
       strFormula = result[0].mean;