Skip to content

Commit

Permalink
chore: format content markdown files with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 23, 2024
1 parent c0388f6 commit 3be14f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/docs/guides/neon-authorize.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Most authentication providers issue **JSON Web Tokens (JWTs)** on user authentic
With **Neon Authorize**, the JWT is passed on to Neon, where you can make use of the validated user identity directly in Postgres. To integrate with an authentication provider, add your provider's JWT discovery URL to your project. This lets Neon retrieve the necessary keys to validate the JWTs.

```typescript shouldWrap
import { neon } from "@neondatabase/serverless";
import { neon } from '@neondatabase/serverless';

const sql = neon(process.env.DATABASE_AUTHENTICATED_URL, { authToken: myAuthProvider.getJWT() });

Expand Down

0 comments on commit 3be14f0

Please sign in to comment.