From 2a2fe700b4668d883592090001283254d754cfc7 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Mon, 20 Jan 2025 14:23:24 -0800 Subject: [PATCH] Fix loading state --- src-web/components/RequestPane.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-web/components/RequestPane.tsx b/src-web/components/RequestPane.tsx index fdc7a6ab..bb2685d4 100644 --- a/src-web/components/RequestPane.tsx +++ b/src-web/components/RequestPane.tsx @@ -368,7 +368,7 @@ export const RequestPane = memo(function RequestPane({ onMethodChange={handleMethodChange} onUrlChange={handleUrlChange} forceUpdateKey={updateKey} - isLoading={activeResponse?.state !== 'closed'} + isLoading={activeResponse != null && activeResponse.state !== 'closed'} />