chore: remove console logs and unused imports (#5299)
This commit is contained in:
parent
c97450dcf2
commit
3fdb4e87ba
2 changed files with 1 additions and 11 deletions
|
|
@ -108,7 +108,6 @@ const TableComponent = forwardRef<
|
|||
}
|
||||
return newCol;
|
||||
});
|
||||
console.log(colDef);
|
||||
// @ts-ignore
|
||||
const realRef: React.MutableRefObject<AgGridReact> =
|
||||
useRef<AgGridReact | null>(null);
|
||||
|
|
@ -184,7 +183,6 @@ const TableComponent = forwardRef<
|
|||
);
|
||||
}
|
||||
}
|
||||
console.log(colDef);
|
||||
return (
|
||||
<div
|
||||
className={cn(
|
||||
|
|
|
|||
|
|
@ -4,19 +4,11 @@ import "ace-builds/src-noconflict/mode-python";
|
|||
import "ace-builds/src-noconflict/theme-github";
|
||||
import "ace-builds/src-noconflict/theme-twilight";
|
||||
// import "ace-builds/webpack-resolver";
|
||||
import { cloneDeep, set } from "lodash";
|
||||
import { useEffect, useState } from "react";
|
||||
import JsonView from "react18-json-view";
|
||||
import { useState } from "react";
|
||||
import "react18-json-view/src/dark.css";
|
||||
import "react18-json-view/src/style.css";
|
||||
import IconComponent from "../../components/common/genericIconComponent";
|
||||
import { Button } from "../../components/ui/button";
|
||||
import {
|
||||
CODE_DICT_DIALOG_SUBTITLE,
|
||||
TEXT_DIALOG_SUBTITLE,
|
||||
} from "../../constants/constants";
|
||||
import TextOutputView from "../../shared/components/textOutputView";
|
||||
import { useDarkStore } from "../../stores/darkStore";
|
||||
import BaseModal from "../baseModal";
|
||||
import TextEditorArea from "./components/textEditorArea";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue