Skip to content

Commit c623ef6

Browse files
Add changeset
1 parent f6ea157 commit c623ef6

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/chatty-ways-bathe.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/nextjs': major
3+
---
4+
5+
Forward port, host, x-forwarded-port, x-forwarded-host, x-forwarded-proto, and x-clerk-auth-status with POST requests to /v1/accountless_applications /v1/accountless_applications/complete

packages/nextjs/src/server/keyless-custom-headers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export function formatMetadataHeaders(metadata: MetadataHeaders): Headers {
7373
}
7474

7575
if (metadata.host) {
76-
headers.set('Clerk-Client-host', metadata.host);
76+
headers.set('Clerk-Client-Host', metadata.host);
7777
}
7878

7979
if (metadata.xPort) {
@@ -85,7 +85,7 @@ export function formatMetadataHeaders(metadata: MetadataHeaders): Headers {
8585
}
8686

8787
if (metadata.xProtocol) {
88-
headers.set('Clerk-X-protocol', metadata.xProtocol);
88+
headers.set('Clerk-X-Protocol', metadata.xProtocol);
8989
}
9090

9191
if (metadata.xClerkAuthStatus) {

0 commit comments

Comments
 (0)