Skip to content

Commit bb7a3ce

Browse files
committed
fix: last typechecks
1 parent d10230a commit bb7a3ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/messages/goodbye.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function sayGoodbye(preferences: Preferences) {
2929
sayCommand(`${packageManager} install`, 'Install project dependencies')
3030
}
3131

32-
if (preferences.addModules?.includes('prisma') || preferences.setStack === 'cheviot') {
32+
if (preferences.addModules?.includes('prisma')) {
3333
sayCommand(`${packageManager} run db`, 'Start the local postgres database in a new window')
3434
sayCommand('npx prisma db push', 'Initialize the database & Prisma client')
3535
}

src/utils/logTelemetry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export async function logTelemetry(preferences: Preferences) {
1616
}
1717

1818
// We do not want to know identifiable information, only pass: Stack + selected modules
19-
const annonymizedPreferences = new URLSearchParams({ ref: preferences.setStack, utm_content: (preferences.addModules || []).join(',') || 'null' })
19+
const annonymizedPreferences = new URLSearchParams({ ref: 'merino', utm_content: (preferences.addModules || []).join(',') || 'null' })
2020
const headers = { 'User-Agent': 'Mozilla/5.0', 'X-Forwarded-For': `2.175.${Math.floor(Math.random() * 255)}.${Math.floor(Math.random() * 255)}` }
2121
return fetch('https://plausible.io/api/event', {
2222
method: 'POST',

0 commit comments

Comments
 (0)