Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/code/src/main/services/github-integration/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class GitHubIntegrationService {
): Promise<StartGitHubFlowOutput> {
try {
const cloudUrl = getCloudUrlFromRegion(region);
const next = `${cloudUrl}/projects/${projectId}`;
const next = `${cloudUrl}/project/${projectId}`;
const authorizeUrl = `${cloudUrl}/api/environments/${projectId}/integrations/authorize/?kind=github&next=${encodeURIComponent(next)}`;

log.info("Opening GitHub authorization URL in browser");
Expand Down
2 changes: 1 addition & 1 deletion apps/code/src/main/services/linear-integration/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class LinearIntegrationService {
): Promise<StartLinearFlowOutput> {
try {
const cloudUrl = getCloudUrlFromRegion(region);
const next = `${cloudUrl}/projects/${projectId}`;
const next = `${cloudUrl}/project/${projectId}`;
const authorizeUrl = `${cloudUrl}/api/environments/${projectId}/integrations/authorize/?kind=linear&next=${encodeURIComponent(next)}`;

log.info("Opening Linear authorization URL in browser");
Expand Down
Loading