From 232107978b67ee888857169a08bab1bef24cac1f Mon Sep 17 00:00:00 2001 From: Koustav Date: Wed, 8 Jan 2025 17:49:29 +0530 Subject: [PATCH] Fix Build --- src/hooks/useQueryLogs.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hooks/useQueryLogs.ts b/src/hooks/useQueryLogs.ts index 9ec7e5fe..faee16ea 100644 --- a/src/hooks/useQueryLogs.ts +++ b/src/hooks/useQueryLogs.ts @@ -31,7 +31,6 @@ export const useQueryLogs = () => { // data ref will always have the unfiltered data. // Only mutate it when data is fetched, otherwise read only const _dataRef = useRef(null); - const [queryEngine] = useAppStore((store) => store.instanceConfig?.queryEngine); const [streamInfo] = useStreamStore((store) => store.info); const [currentStream] = useAppStore((store) => store.currentStream); const timePartitionColumn = _.get(streamInfo, 'time_partition', 'p_timestamp');