<VarDeclaration name="response" refkey={refkeyResponse}>
await{" "}
<InvocationExpression
target={code`${props.refkeyHttpClient}.SendAsync`}
args={[refkeyRequest, props.refkeyCancellationToken]}
/>
</VarDeclaration>
could cleanup to this?
<VarDeclaration name="response" refkey={refkeyResponse}>
<InvocationExpression
await
target={code`${props.refkeyHttpClient}.SendAsync`}
args={[refkeyRequest, props.refkeyCancellationToken]}
/>
</VarDeclaration>
could cleanup to this?