fix(common): resolve Postman API key authorization header import mapping (#5701)

This commit is contained in:
Aaron Fort Garcia 2025-12-19 12:41:22 +01:00 committed by GitHub
parent a0bc22968d
commit c7e453455b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -299,7 +299,7 @@ const getHoppReqAuth = (
getVariableValue(auth.apikey, "value") ?? "" getVariableValue(auth.apikey, "value") ?? ""
), ),
addTo: addTo:
(getVariableValue(auth.apikey, "in") ?? "query") === "query" getVariableValue(auth.apikey, "in") === "query"
? "QUERY_PARAMS" ? "QUERY_PARAMS"
: "HEADERS", : "HEADERS",
} }