We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc89ff3 commit 3dd1df0Copy full SHA for 3dd1df0
static/app/views/seerExplorer/hooks/useSeerExplorer.tsx
@@ -538,16 +538,11 @@ export const useSeerExplorer = () => {
538
539
useEffect(() => {
540
if (isLoaded || isTimedOut) {
541
- if (waitingForResponse) {
542
- // Reset waiting and request states
543
- setWaitingForResponse(false);
544
- setOptimistic(null);
545
- setDeletedFromIndex(null);
546
- }
547
-
548
- if (!isTimedOut) {
549
- cancelPollingTimeout();
550
+ // Reset waiting and request states
+ setWaitingForResponse(false);
+ setOptimistic(null);
+ setDeletedFromIndex(null);
+ cancelPollingTimeout();
551
552
if (interruptRequested) {
553
// Clear waiting for interrupt state and set persistent UI flag until next request
0 commit comments