Skip to content

Commit

Permalink
fix nulls
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcnellis committed Sep 27, 2024
1 parent dc5937f commit 819a8fd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/apphosting/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ export async function doSetup(
const gitRepositoryLink: GitRepositoryLink = await githubConnections.linkGitHubRepository(
projectId,
location,
null,
);

const rootDir = await promptOnce({
Expand Down
2 changes: 1 addition & 1 deletion src/commands/apphosting-repos-create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ export const command = new Command("apphosting:repos:create")
const location = options.location;
const connection = options.gitconnection;

await createGitRepoLink(projectId, location as string | null, connection as string | null);
await createGitRepoLink(projectId, location as string | null, connection as string | undefined);
});

0 comments on commit 819a8fd

Please sign in to comment.