@@ -62,7 +62,7 @@ function DBTimeChartComponent({
6262 limit : { limit : 100000 } ,
6363 } ;
6464
65- const { data, isLoading, isError, error, isPlaceholderData , isSuccess } =
65+ const { data, isLoading, isError, error, isSuccess , isFetching } =
6666 useQueriedChartConfig ( queriedConfig , {
6767 placeholderData : ( prev : any ) => prev ,
6868 queryKey : [ queryKeyPrefix , queriedConfig ] ,
@@ -75,7 +75,6 @@ function DBTimeChartComponent({
7575 }
7676 } , [ isError , isErrorExpanded , errorExpansion ] ) ;
7777
78- const isLoadingOrPlaceholder = isLoading || isPlaceholderData ;
7978 const { data : source } = useSource ( { id : sourceId } ) ;
8079
8180 const { graphResults, timestampColumn, groupKeys, lineNames, lineColors } =
@@ -338,7 +337,7 @@ function DBTimeChartComponent({
338337 graphResults = { graphResults }
339338 groupKeys = { groupKeys }
340339 isClickActive = { false }
341- isLoading = { isLoadingOrPlaceholder }
340+ isLoading = { isFetching }
342341 lineColors = { lineColors }
343342 lineNames = { lineNames }
344343 logReferenceTimestamp = { logReferenceTimestamp }
0 commit comments