From fbe0a759b7dcf589247109237b2a87001b5dda4a Mon Sep 17 00:00:00 2001 From: Zias van Nes Date: Fri, 3 Oct 2025 17:04:31 +0200 Subject: [PATCH] fix:typo in redirect uri that broke google oauth --- src/lib/server/oauth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/server/oauth.ts b/src/lib/server/oauth.ts index 93bbf91..9df80b2 100644 --- a/src/lib/server/oauth.ts +++ b/src/lib/server/oauth.ts @@ -4,5 +4,5 @@ import { GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET } from '$env/static/private'; export const google = new Google( GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, - 'https://sergeno.ziasvannes.tech/login/google/callback' + 'https://serengo.ziasvannes.tech/login/google/callback' );