Skip to content

Commit

Permalink
chore: add todo for checking the table prefix option
Browse files Browse the repository at this point in the history
  • Loading branch information
cabljac committed Dec 18, 2024
1 parent 09c74da commit 75b4925
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,9 @@ const questions = [
validateInput(value, "dataset ID", BIGQUERY_VALID_CHARACTERS),
},
{
// TODO: why was this collection path?
message:
"What is the name of the Cloud Firestore collection for which you want to generate a schema view?",
"What is the table name prefix for which you want to generate a schema view?",
name: "tableNamePrefix",
type: "input",
validate: (value) =>
Expand All @@ -208,7 +209,6 @@ const questions = [
when: (answers) => answers.useGeminiAgent,
validate: (value) =>
validateInput(value, "collection path", FIRESTORE_VALID_CHARACTERS),
default: (answers) => answers.tableNamePrefix,
},
{
message: "Please provide your Google AI API Key:",
Expand Down

0 comments on commit 75b4925

Please sign in to comment.