diff --git a/packages/insomnia/src/common/render.ts b/packages/insomnia/src/common/render.ts index 24eb2d2cc..a77c405bd 100644 --- a/packages/insomnia/src/common/render.ts +++ b/packages/insomnia/src/common/render.ts @@ -149,7 +149,7 @@ export async function buildRenderContext( } } else if (Object.prototype.toString.call(subContext[key]) === '[object Object]') { // Context is of Type object, Call this function recursively to handle nested objects. - subContext[key] = renderSubContext(subObject[key], subContext[key]); + subContext[key] = await renderSubContext(subObject[key], subContext[key]); } else { // For all other Types, add the Object to the Context. subContext[key] = subObject[key];