fix: remove early return for services call in usage explorer (#4669)

This commit is contained in:
Srikanth Chekuri 2024-03-11 15:20:59 +05:30 committed by GitHub
parent 6b87118fc6
commit 7c2007faa3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,13 +17,6 @@ export const GetService = (
try {
const { globalTime } = getState();
if (
props.maxTime !== globalTime.maxTime &&
props.minTime !== globalTime.minTime
) {
return;
}
const { maxTime, minTime } = GetMinMax(globalTime.selectedTime, [
globalTime.minTime / 1000000,
globalTime.maxTime / 1000000,