diff --git a/src/pages/Stream/Views/LiveTail/LiveLogTable.tsx b/src/pages/Stream/Views/LiveTail/LiveLogTable.tsx
index b5a15232..e251243e 100644
--- a/src/pages/Stream/Views/LiveTail/LiveLogTable.tsx
+++ b/src/pages/Stream/Views/LiveTail/LiveLogTable.tsx
@@ -1,8 +1,9 @@
import { FC, useEffect, useState } from 'react';
import { ScrollArea, Table, Box } from '@mantine/core';
-import { Tbody, Thead } from '@/components/Table';
+import { Tbody,
+ Thead
+ } from '@/components/Table';
import LogRow from './LiveLogRow';
-import Column from '../../components/Column';
import { useDoGetLiveTail } from '@/hooks/useDoGetLiveTail';
import EmptyBox from '@/components/Empty';
import styles from '../../styles/Logs.module.css';
@@ -54,11 +55,23 @@ const LiveLogTable: FC = () => {
}
}, [loading]);
- const headerRows = schema?.map((element) =>