We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916fc34 commit ea446b7Copy full SHA for ea446b7
src/init/features/apphosting/repo.ts
@@ -135,7 +135,7 @@ async function promptRepositoryUri(
135
): Promise<{ remoteUri: string; connection: gcb.Connection }> {
136
const remoteUriToConnection: Record<string, gcb.Connection> = {};
137
for (const conn of connections) {
138
- const { id } = parseConnectionName(conn.name)!;
+ const { location, id } = parseConnectionName(conn.name)!;
139
const resp = await gcb.fetchLinkableRepositories(projectId, location, id);
140
if (resp.repositories && resp.repositories.length > 0) {
141
for (const repo of resp.repositories) {
0 commit comments