Skip to content

Commit

Permalink
fix: remove duplicate exit key from create template
Browse files Browse the repository at this point in the history
  • Loading branch information
vickvasquez committed Feb 24, 2023
1 parent a848a72 commit 2d9cb98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-astro/src/actions/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import path from 'node:path';
import { error, info, spinner, title } from '../messages.js';

export async function template(
ctx: Pick<Context, 'template' | 'prompt' | 'dryRun' | 'exit' | 'exit'>
ctx: Pick<Context, 'template' | 'prompt' | 'dryRun' | 'exit'>
) {
if (!ctx.template) {
const { template: tmpl } = await ctx.prompt({
Expand Down

0 comments on commit 2d9cb98

Please sign in to comment.