diff --git a/packages/bruno-app/src/components/ResponsePane/GrpcResponsePane/index.js b/packages/bruno-app/src/components/ResponsePane/GrpcResponsePane/index.js index c74ba11bf..37e0841fe 100644 --- a/packages/bruno-app/src/components/ResponsePane/GrpcResponsePane/index.js +++ b/packages/bruno-app/src/components/ResponsePane/GrpcResponsePane/index.js @@ -4,6 +4,7 @@ import { useDispatch, useSelector } from 'react-redux'; import { updateResponsePaneTab } from 'providers/ReduxStore/slices/tabs'; import Overlay from '../Overlay'; import Placeholder from '../Placeholder'; +import HeightBoundContainer from 'ui/HeightBoundContainer'; import GrpcResponseHeaders from './GrpcResponseHeaders'; import GrpcStatusCode from './GrpcStatusCode'; import ResponseTime from '../ResponseTime/index'; @@ -100,9 +101,9 @@ const GrpcResponsePane = ({ item, collection }) => { if (!item.response && !requestTimeline?.length) { return ( - + - + ); } diff --git a/packages/bruno-app/src/components/ResponsePane/WsResponsePane/index.js b/packages/bruno-app/src/components/ResponsePane/WsResponsePane/index.js index dd86e7aec..b88100ef9 100644 --- a/packages/bruno-app/src/components/ResponsePane/WsResponsePane/index.js +++ b/packages/bruno-app/src/components/ResponsePane/WsResponsePane/index.js @@ -4,6 +4,7 @@ import { useDispatch, useSelector } from 'react-redux'; import { updateResponsePaneTab } from 'providers/ReduxStore/slices/tabs'; import Overlay from '../Overlay'; import Placeholder from '../Placeholder'; +import HeightBoundContainer from 'ui/HeightBoundContainer'; import WSStatusCode from './WSStatusCode'; import ResponseTime from '../ResponseTime/index'; import Timeline from '../Timeline'; @@ -89,9 +90,9 @@ const WSResponsePane = ({ item, collection }) => { if (!item.response && !requestTimeline?.length) { return ( - + - + ); }