Skip to content

Commit

Permalink
fix SQLite import @ getting started. (#927)
Browse files Browse the repository at this point in the history
  • Loading branch information
igalklebanov authored Mar 31, 2024
1 parent d9a53cd commit 5407df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/docs/getting-started/Instantiation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const dialect = new ${dialectClassName}({
if (dialect === 'sqlite') {
const driverImportName = 'SQLite'

return `import * as ${driverImportName} from '${driverNPMPackageName}'
return `import ${driverImportName} from '${driverNPMPackageName}'
import { Kysely, ${dialectClassName} } from 'kysely'
const dialect = new ${dialectClassName}({
Expand Down

0 comments on commit 5407df2

Please sign in to comment.