Update OauthCallbackPage.tsx

This commit is contained in:
Daniel Hougaard
2025-07-30 21:03:36 +04:00
parent b9dd565926
commit c4c8e121f0

View File

@@ -408,7 +408,7 @@ export const OAuthCallbackPage = () => {
credentials: {
code: code as string,
installationId: installationId as string,
host: credentials.host
...(credentials?.host && { host: credentials.host })
},
gatewayId
}
@@ -416,7 +416,7 @@ export const OAuthCallbackPage = () => {
connectionId,
credentials: {
code: code as string,
host: credentials.host
...(credentials?.host && { host: credentials.host })
},
gatewayId
})
@@ -432,7 +432,7 @@ export const OAuthCallbackPage = () => {
credentials: {
code: code as string,
installationId: installationId as string,
host: credentials.host
...(credentials?.host && { host: credentials.host })
},
gatewayId
}
@@ -440,7 +440,7 @@ export const OAuthCallbackPage = () => {
method: GitHubConnectionMethod.OAuth,
credentials: {
code: code as string,
host: credentials.host
...(credentials?.host && { host: credentials.host })
},
gatewayId
})