Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Feb 23, 2024
1 parent ebd93cc commit 02ae32e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/helpers/proxy-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function convertHeaders(headers: RawAxiosResponseHeaders | AxiosResponseHeaders)

Object.entries(headers).forEach(([name, value]) => {
if (Array.isArray(value)) {
result[name] = value.map(n => `${n}`);
result[name] = value.map((n) => `${n}`);
} else {
result[name] = `${value}`;
}
Expand Down

0 comments on commit 02ae32e

Please sign in to comment.