Skip to content

Commit

Permalink
remove unused const
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoneto committed Aug 24, 2023
1 parent 4f40ce0 commit 2f4f41b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/new/form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ const projectForm = async (projectName: string, args: ProjectFormArgs): Promise<
template: Template;
confirm: boolean;
};
const projName: string = projectName;
const [packageManager, template, directory] = args;

if (packageManager && template) {
Expand Down Expand Up @@ -205,7 +204,7 @@ const projectForm = async (projectName: string, args: ProjectFormArgs): Promise<

changePackageName({
directory: answer.name,
name: projName,
name: projectName,
});

progressBar.update(100);
Expand Down

0 comments on commit 2f4f41b

Please sign in to comment.