Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
corbadoman committed Jan 21, 2024
1 parent 9fc3a9e commit 1c8df41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/authTokens/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const express = require('express');
const corbado = require('@corbado/node-sdk');
const Corbado = require('@corbado/node-sdk');

const app = express();

const config = new corbado.Config(process.env.CORBADO_PROJECT_ID, process.env.CORBADO_API_SECRET);
const sdk = new corbado.SDK(config);
const config = new Corbado.Config(process.env.CORBADO_PROJECT_ID, process.env.CORBADO_API_SECRET);
const sdk = new Corbado.SDK(config);

app.get('/', async (req, res) => {
try {
Expand Down

0 comments on commit 1c8df41

Please sign in to comment.