Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
fix: camelCase issue in drizzle module
Browse files Browse the repository at this point in the history
  • Loading branch information
productdevbook committed Feb 2, 2024
1 parent a8ad852 commit d30b3a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nuxt/src/runtime/modules/drizzle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export * as ${options.generatorFunctionName('Tables')} from './schema'
function drizzle() {
return {
${returnDriver}
tables: camelCase('${options.projectName}-Tables'),
tables: ${camelCase(`${options.projectName}-Tables`)},
}
}
`,
Expand Down

0 comments on commit d30b3a7

Please sign in to comment.