remove comment

This commit is contained in:
Bassel Kanso 2022-04-26 19:22:19 +03:00
parent 4c6c88e410
commit c7b4d1396b

View File

@ -15,11 +15,9 @@ const dbQuestions = require('./utils/db-questions');
const createProject = require('./create-project');
module.exports = async scope => {
if (!scope.useTypescript) {
// check how to handle track usage here
const language = await askAboutLanguages(scope);
scope.useTypescript = language === "Typescript";
scope.useTypescript = language === 'Typescript';
}
await trackUsage({ event: 'didChooseCustomDatabase', scope });