Update src/queries/prisma/oidc.ts

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Gavin Mogan 2025-08-22 16:32:53 -07:00 committed by GitHub
parent 85b024a59b
commit 561f8f42dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,7 +17,7 @@ export async function getOidcState(state: string): Promise<{
state: string; state: string;
codeVerifier: string; codeVerifier: string;
createdAt: Date; createdAt: Date;
}> { } | null> {
return prisma.client.oidcState.findUnique({ return prisma.client.oidcState.findUnique({
where: { where: {
state: state, state: state,