chore: merge hoppscotch/release/2023.12.6 into hoppscotch/release/2024.3.0

This commit is contained in:
Andrew Bastin
2024-02-27 13:35:20 +05:30
144 changed files with 4009 additions and 993 deletions

View File

@@ -176,7 +176,7 @@ export const printRequestRunner = {
*/
start: (requestConfig: RequestConfig) => {
const METHOD = BG_INFO(` ${requestConfig.method} `);
const ENDPOINT = requestConfig.url;
const ENDPOINT = requestConfig.displayUrl || requestConfig.url;
process.stdout.write(`${METHOD} ${ENDPOINT}`);
},