feat(Temp): render table even if no getList

This commit is contained in:
karishmas6
2024-08-30 22:45:23 +05:30
parent 19f840259e
commit 1d41204dc8

View File

@@ -153,9 +153,6 @@ export const InterpretationLog = () => {
<Highlight className="javascript">
{log}
</Highlight>
{
getList ? (
<>
<TableContainer component={Paper}>
<Table sx={{ minWidth: 650 }} stickyHeader aria-label="simple table">
<TableHead>
@@ -221,9 +218,6 @@ export const InterpretationLog = () => {
</Button>
</div>
</div>
</>
) : null
}
<div style={{ float: "left", clear: "both" }}
ref={logEndRef} />
</div>