Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianGonz97 committed Nov 14, 2024
1 parent b78a6a3 commit a3b6954
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/adders/lucia/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ export default defineAdder({
const userDecl = js.variables.declaration(ast, 'const', 'user', createTable('user'));
const sessionDecl = js.variables.declaration(ast, 'const', 'session', createTable('session'));

const user = exports.namedExport(ast, 'user', userDecl);
const session = exports.namedExport(ast, 'session', sessionDecl);
const user = js.exports.namedExport(ast, 'user', userDecl);
const session = js.exports.namedExport(ast, 'session', sessionDecl);

const userTable = getCallExpression(user);
const sessionTable = getCallExpression(session);
Expand Down

0 comments on commit a3b6954

Please sign in to comment.