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