Skip to content

Commit

Permalink
Update packages/wrangler/src/pages.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Pete Bacon Darwin <[email protected]>
  • Loading branch information
GregBrimble and petebacondarwin committed May 9, 2022
1 parent bd7aa78 commit 729e9d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wrangler/src/pages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ const createDeployment: CommandModule<
(project) => !project.source
);

let existingOrNew = "new";
let existingOrNew: "existing" | "new" = "new";

if (projects.length > 0) {
existingOrNew = await new Promise<"new" | "existing">((resolve) => {
Expand Down

0 comments on commit 729e9d7

Please sign in to comment.