From c81914262a7f8712bc5649f80ab69b21b120823d Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Thu, 18 Jan 2024 19:55:49 +0200 Subject: [PATCH] format --- src/pages/LogsPage/LogsTerminal.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/pages/LogsPage/LogsTerminal.tsx b/src/pages/LogsPage/LogsTerminal.tsx index da94bdd3..aeac2789 100644 --- a/src/pages/LogsPage/LogsTerminal.tsx +++ b/src/pages/LogsPage/LogsTerminal.tsx @@ -37,8 +37,7 @@ const LogsTerminal = ({ windowWidth, timestamps, searchInput, - setSearchInput, - highLightSearched, + }: LogsTerminalProps) => { const [data, setData] = useState([]) const [loadedIndexes, setLoadedIndexes] = useState<{ [key: number]: boolean }>({}) @@ -133,8 +132,8 @@ const LogsTerminal = ({ {({ index, style }) => { const highlight = searchInput && data[index].description.split(' ').includes(searchInput) - // now we only check for the existing text at the moment - // I have to move this statemant in the terminalRow component + // now we only check for the existing text at the moment + // I have to move this statemant in the terminalRow component return (