Skip to content

Commit

Permalink
Due to GrpcRequestPane not unmounting methods and body were not loade…
Browse files Browse the repository at this point in the history
…d. (#8273)
  • Loading branch information
h-tiwari-dev authored Jan 6, 2025
1 parent 18072a8 commit 142d559
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions packages/insomnia/src/ui/routes/debug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -680,11 +680,11 @@ export const Debug: FC = () => {
icon: 'terminal',
action: () => setPasteCurlModalOpen(true),
},
{
id: 'from-file',
name: 'From File',
icon: 'file-import',
action: () => setIsImportModalOpen(true),
{
id: 'from-file',
name: 'From File',
icon: 'file-import',
action: () => setIsImportModalOpen(true),
}],
}];

Expand Down Expand Up @@ -1140,6 +1140,7 @@ export const Debug: FC = () => {
)}
{isGrpcRequestId(requestId) && grpcState && (
<GrpcRequestPane
key={grpcState.requestId}
grpcState={grpcState}
setGrpcState={setGrpcState}
reloadRequests={reloadRequests}
Expand Down

0 comments on commit 142d559

Please sign in to comment.