Skip to content

Commit 047c392

Browse files
authored
Fix auth confirmation message (#14)
1 parent 8bba7b4 commit 047c392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ const confirmPrompt = async (options: Options) => {
249249
const message =
250250
`You have chosen to create a ${backendName} app with a ` +
251251
`${apiName} API, ${databaseName} database, and ${
252-
options.auth ? "" : "no "
252+
options.auth === "auth" ? "" : "no "
253253
}built-in auth. Please confirm:`;
254254

255255
const prompt = {

0 commit comments

Comments
 (0)