chore: reformat

This commit is contained in:
Siddharth Gelera
2025-09-30 17:18:57 +05:30
parent 39878890da
commit 00490e7462
3 changed files with 2 additions and 3 deletions

View File

@@ -273,7 +273,7 @@ const WSBody = ({ item, collection, handleRun }) => {
ref={messagesContainerRef}
id="ws-messages-container"
className={`flex-1 ${body.ws.length === 1 || !canClientSendMultipleMessages ? 'h-full' : 'overflow-y-auto'} ${canClientSendMultipleMessages && 'pb-16'
}`}
}`}
>
{body.ws
.filter((_, index) => canClientSendMultipleMessages || index === 0)

View File

@@ -214,4 +214,4 @@ export const extractVariableInfo = (str, variables) => {
}
return { variableName, variableValue };
};
};

View File

@@ -102,7 +102,6 @@ const jsonToBru = (json) => {
bru += `ws {
url: ${ws.url}`;
if (ws.body && ws.body.length) {
bru += `
body: ${ws.body}`;